Language-agnostic indentation
Just wanted to share a style of code-indentation that I've found to express clearly the logic of if statements and other control structures inside template files. That is, when PHP and HTML are mixed together, this technique can make it much clearer what's going on (in terms of nested structures, such as if statements, for loops, etc.).
You simply indent with each level of nesting, regardless of which language you are in; for example:
This makes a dramatic difference with complex logic. For example:
That if statement on line 18 - is it inside the for loop or not? Is it inside any other if statements?
Compare with:
Here the nesting is clear.
You simply indent with each level of nesting, regardless of which language you are in; for example:
<div>
<li>Quarter Pounder</li>
<?php
if ($very_hungry) { ?>
<li>French Fries</li>
<?php
} ?>
</div>
This makes a dramatic difference with complex logic. For example:
That if statement on line 18 - is it inside the for loop or not? Is it inside any other if statements?
Compare with:
Here the nesting is clear.
0 Comments:
Post a Comment
<< Home