Is writing
<?=$variable?>
slower than
<?php echo $variable; ?>
In other words, what does the server interpret faster?
feedback
|
|
I can guarantee you with absolute certainty that it won't matter one bit. :) | |||||||||||||||
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! | |||||||||||||
feedback
|