Is writing

<?=$variable?>

slower than

<?php echo $variable; ?>

In other words, what does the server interpret faster?

link|improve this question

1  
For fun sake, it could be fun to actually measure it. I'm pretty sure there wont be any difference, but i will line up a test for this particular thing in a couple of hours, and post the result in this thread – Jan Dragsbaek Feb 17 '11 at 10:53
You can search around even here on SO and find some good answers to this question: stackoverflow.com/questions/662891/… – XtSchon Feb 17 '11 at 10:53
@Nayena - I'd like to see that test. Care to spend some time one it? – Kriem Feb 21 '11 at 12:42
feedback

2 Answers

up vote 7 down vote accepted

I can guarantee you with absolute certainty that it won't matter one bit. :)

link|improve this answer
How come? Brain states short tags have to be converted first. – Kriem Feb 17 '11 at 10:51
@Kriem there may be a difference of half a microsecond or so, but it will not have any real-world impact whatsoever. Unless you have a totally unrealistic number of separate PHP blocks in your source file, like 10000 or 100000 – Pekka Feb 17 '11 at 10:52
@Kriem who is that Brian? A developer of PHP language? An expert? A divine spirit? – Your Common Sense Feb 17 '11 at 10:53
4  
@Kriem it's not worth investigating, at least not from a real-world performance standpoint. Any database or include() call will take hundreds or thousands of times the time that parsing the opening tag does. This falls squarely in the "unnecessary micro-optimization" department – Pekka Feb 17 '11 at 11:05
1  
@Col. Shrapnel - I used to be part of the QA team of PHP - tho what was back in days of PHP 3/4 admittedly. – Brian Feb 17 '11 at 11:12
show 3 more comments
feedback

I don't think there will be a huge difference - but short-tags essentially have to get essentially converted first into the normal syntax when executed. I expect the differance is minimal - I have never tried to benchmark it!

link|improve this answer
Now what's the matter with that! I was pointing out the actuall behind-the-scenes working of PHP when using short-tags! – Brian Feb 17 '11 at 10:51
An you can prove your point, can't you? – Your Common Sense Feb 17 '11 at 10:54
The downvote isn't mine, but do you have evidence on the "tags need to be converted first" bit? I'm not sure that would be how it works – Pekka Feb 17 '11 at 10:55
If you have ever taken the time to examine the source, you will see that <?= is converted to an echo. – Brian Feb 17 '11 at 11:09
1  
FYI - i did'nt say there would be a difference - I was merley pointing out the internal working of the parser. Would be fractions of a ms if any ultimatley :) – Brian Feb 17 '11 at 11:14
feedback

Your Answer

 
or
required, but never shown

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