Why is there different syntax same outcome?

For example

# Example 1
if($myCondition == true) :
    #my code here
endif;

if($myCondition == true) {
    #my code here
}

# Example 2
foreach($films as $film) : 
    #my code here
endforeach;

foreach($films as $film) { 
    #my code here
}

Also I have been using <?= for ages now and I now understand that is deprecated and I should be using <?php echo Is this the case and why? It's a lot more annoying to have to write that out each time.

What are your thoughts?

link|improve this question

If you have to write <?php echo ...; ?> more than a few times, use a template engine. Having html and php code in the same file is extremely dirty. – ThiefMaster Jun 11 '10 at 11:41
1  
@ThiefMaster PHP by itself is a template engine. Whether you write {$smartySucks} or <?php echo $someVar; ?> doesn't matter. It only gets dirty when you start to mix logic into the template. – Gordon Jun 11 '10 at 12:02
@Gordon Something about your example seems biased :p – Mike B Jun 11 '10 at 12:11
feedback

2 Answers

up vote 1 down vote accepted

The colon endif, endforeach, etc syntax is known as Alternative Syntax. I can't say for certain why this functionality exists, just that it does and is supported. I can say that I've noticed the alternative syntax used more for templating purposes where it's easy to pick out an endif/endforeach than it is a closing curly-brace in the middle of HTML markup.

The <?= is known as the short open tag. You can probably find all the info you need about its use here http://stackoverflow.com/questions/200640/are-php-short-tags-acceptable-to-use

link|improve this answer
feedback

Why should the outcome be different? The one without the brackets is called alternative syntax for control structures and is very useful, e.g. when dealing with HTML.

<?php echo is much more portable because short open tags can be disabled and are disabled by default since PHP 5.3

link|improve this answer
disabled by default, but is it still supported or is it deprecated? – Lizard Jun 11 '10 at 11:32
@Lizard it is deprecated. But it won't be removed. See the links given in stackoverflow.com/questions/2413661/… – Gordon Jun 11 '10 at 12:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.