Are there any differences between...
if ($value) {
}
...and...
if ($value):
endif;
?
|
Are there any differences between...
...and...
?
| |||||
feedback
|
|
They are the same but the second one is great if you have MVC in your code and don't want to have a lot of echos in your code. F.e. in my .phtml files (Zend Framework) I will write something like this:
| |||||||||||||||||||||
feedback
|
|
I personally really hate the alternate syntax. One nice thing about the braces is that most IDEs, vim, etc all have bracket highlighting. In my text editor I can double click a brace and it will highlight the whole chunk so I can see where it ends and begins very easily. I don't know of a single editor that can highlight endif, endforeach, etc. | |||||||||
feedback
|
|
I think this say it all:
http://ca3.php.net/manual/en/control-structures.alternative-syntax.php When mixing HTML an PHP the alternative sytnax is much easier to read. In normal PHP documents the traditional syntax should be used. | |||||
feedback
|
|
Here's where you can find it in the official documentation: PHP: Alternative syntax for control structures | |||
|
feedback
|
|
At our company, the preferred way for handling HTML is:
In the end, it really is a matter of choosing one and sticking with it. | |||||||||||
feedback
|
|
I would use the first option if at all possible, regardless of the new option. The syntax is standard and everyone knows it. It's also backwards compatible. | |||
|
feedback
|
|
Both are the same. But: If you want to use PHP as your templating language in your view files(the V of MVC) you can use this alternate syntax to distinguish between php code written to implement business-logic (Controller and Model parts of MVC) and gui-logic. Of course it is not mandatory and you can use what ever syntax you like. ZF uses that approach. | |||
|
feedback
|
|
There is no technical difference between the two syntaxes. The alternative syntax is not new; it was supported at least as far back as PHP 4, and perhaps even earlier. You might prefer the alternative form because it explicitly states which control structure is ending: You might prefer the traditional syntax, though, if you use an editor that has special support for braces in other C-like syntaxes. Vim, for example, supports several keystrokes for navigating to matching braces and to the starts and ends of brace-delimited blocks. The alternative syntax would break that editor feature. | |||
|
feedback
|
|
I used to use the curly braces but now a days I prefer to use this short-hand alternative syntax because of code readability and accessibility. | |||
|
feedback
|
|
In the end you just don't want to be looking for the following line and then having to guess where it started:
Technically and functionally they are the same. | |||
|
feedback
|
|
I think that it really depends on your personal coding style. If you're used to C++, Javascript, etc., you might feel more comfortable using the {} syntax. If you're used to Visual Basic, you might want to use the if : endif; syntax. I'm not sure one can definitively say one is easier to read than the other - it's personal preference. I usually do something like this:
Whether that's easier to read than:
is a matter of opinion. I can see why some would feel the 2nd way is easier - but only if you haven't been programming in Javascript and C++ all your life. :) | |||
|
feedback
|
|
They are indeed both the same, functionally. But if the
| |||
|
feedback
|
|
It all depends, personally I prefer the traditional syntax with echos and plenty of indentations, since it's just so much easier to read.
I agree alt syntax is cleaner with the different end clauses, but I really have a hard time dealing with them without help from text-editor highlighting, and I'm just not used to seeing "condensed" code like this:
| |||
|
feedback
|
|
Personally I prefer making it in two seperate sections but within the same PHP like:
But mayby it is slower? | |||
|
feedback
|
|
I used to use curly brackets for "if, else" conditions. However, I found "if(xxx): endif;" is more semantic if the code is heavily wrapped and easier to read in any editors. Of course, lots editors are capable of recognise and highlight chunks of code when curly brackets are selected. Some also do well on "if(xxx): endif" pair (eg, NetBeans) Personally, I would recommend "if(xxx): endif", but for small condition check (eg, only one line of code), there are not much differences. | |||
|
feedback
|
|
I think it's a matter of preference. I personally use:
| |||||
feedback
|