Ez egy tipikus olyan írás, amely noha tartalmaz értékes tanácsokat, inkább azért érdemes elolvasni, hogy tisztában legyünk azokkal a közhiedelmekkel, amelyek csak néha, vagy egyáltalán nem is igazok. Az érdeklődőknek javaslom Hojsty Gábor "Karaktersorozatok sebessége" PHP-ben c. cikkét is.
Szerinte ,,echo is faster than print.''
Míg a php manual szerint ,,There is a difference between the two, but speed-wise it should be irrelevant which one you use.''
De a legviccesebb, hogy az általa felhasznált irodalomként jelölt A HOWTO on Optimizing PHP cikkelyben is eloszlatják pedig ezt a tévhitet:
Here are some common PHP legends:
a. echo is faster than print
Echo is supposed to be faster because it doesn't return a value while print does. From my benchmarks with PHP 4.3, the difference is neglible. And under some situations, print is faster than echo (when ob_start is enabled).
Nem a legjobb tanácsok
echo vs print
Míg a php manual szerint ,,There is a difference between the two, but speed-wise it should be irrelevant which one you use.''
Legenda
a. echo is faster than print
Echo is supposed to be faster because it doesn't return a value while print does. From my benchmarks with PHP 4.3, the difference is neglible. And under some situations, print is faster than echo (when ob_start is enabled).