I'm curious if there's any low hanging fruit to speed up a PHP script.
For example, is one of these better/faster than the other?
//Code 1
echo 'Hello ' . 'World';
//Code 2
echo 'Hello ';
echo 'World';
Are there other ways to clean up code and make it a tad faster? Is it even worth it?