DEV Community

Discussion on: 4 PHP Tricks to Boost Script Performance

 
devmount profile image
Andreas

Not yet, but I will create a test with the current PHP version and will come back when I have results 👍🏻

Thread Thread
 
devmount profile image
Andreas

In the meantime, see this:

Thread Thread
 
devmount profile image
Andreas

I did a quick benchmark, see this comment:

I can confirm that the single vs. double quotes myth is really just a myth. At least for the PHP 7.2+ (maybe this originates from ver early PHP versions). I did a quick benchmark:

You can say with caution, that in average, double quotes are slightly (and I really mean very slightly!) faster than single quotes. We're talking about a max of 2ms on 5 million iterations... Obviously only, if no variable is replaced.

Thread Thread
 
vinyvicente profile image
Vinicius

Great! Just for the convention is used so. Thanks, Andreas.

Thread Thread
 
devmount profile image
Andreas

My pleasure 😊