Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Are PHP short tags acceptable to use?

I was looking at some sample code and I noticed that the code used

<?=

instead of

<?php

as opening tags, the closing tags were the same as usual, but I was just wondering if there is any different functionality between the two? The file extension of the sample code is also .phtml instead of .php

share|improve this question

marked as duplicate by Robert Harvey Jul 27 '11 at 22:00

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 9 down vote accepted

<?= is not the same as <?php

<?= is the same as <?php echo

<? is the same as <?php

share|improve this answer
It's not the same, because it's not always available, and therefore not portable. – Oli Charlesworth Jul 27 '11 at 21:35
1  
@Oli... It IS the same. He was asking for the difference or similarities. So to answer his question, they are the same, whether they are always available or not. – LeeR Jul 27 '11 at 21:38
It is indeed the same. I agree though that improving the answer by saying that the short tags are not always enabled could be great. Except that, short echo tag rocks, and your answer too. – Matthieu Jul 27 '11 at 21:41

<?= is shorthand for <?php echo ...

It's used like so:

<?=$var1?>

instead of:

<?php echo $var1; ?>
share|improve this answer
Thank you very much :) – Carwyn Stephen Jul 27 '11 at 21:35
You're welcome. – Rocket Hazmat Jul 27 '11 at 21:38
@Carwyn: If this answer addressed your problem, don't forget to click the empty checkmark to the left of it to "accept" the answer. More: How does accepting an answer work? – T.J. Crowder Jul 27 '11 at 21:50

From http://www.php.net/manual/en/language.basic-syntax.phpmode.php:

There are four different pairs of opening and closing tags which can be used in PHP. Two of those, <?php ?> and <script language="php"> </script>, are always available. The other two are short tags and ASP style tags, and can be turned on and off from the php.ini configuration file. As such, while some people find short tags and ASP style tags convenient, they are less portable, and generally not recommended.

...

Also note that if you are embedding PHP within XML or XHTML you will need to use the <?php ?> tags to remain compliant with standards.

So in summary, use <?php ?>.

share|improve this answer
1  
<?= is different than <?php – Matthieu Jul 27 '11 at 21:34
Why is this downvoted? – Oli Charlesworth Jul 27 '11 at 21:34
I could see from the article you pointed out that it is a shortcut to echo whatever is in the tags, thanks! – Carwyn Stephen Jul 27 '11 at 21:35
@Oli don't you see my comment? – Matthieu Jul 27 '11 at 21:35
@Matthieu: I did. But how does that relate to my answer? – Oli Charlesworth Jul 27 '11 at 21:36
show 3 more comments

<?= prints the result of the PHP. It's roughly equivalent to <?php echo ...

<?php of course just starts the code block.

share|improve this answer
It is equivalent, not roughly equivalent ;) – Matthieu Jul 27 '11 at 21:45

<?= is shorthand for <? echo

so you could write

Hello, <?= $name ?>.

instead of

Hello, <? echo $name ?>.
share|improve this answer

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