Which is more machine efficient?
echo 'Hello '.$world;
echo('Hello '.$world);
echo 'Hello ',$world;
echo('Hello ',$world);
echo "Hello $world";
echo("Hello $world");
print(...
Does the answer change if several $variables are in the line?
Does the answer change if the 'plain text' is longer?
Is the , method valid?
Since it takes about the same effort to type or 'cut and paste'
any of the above, the most efficient might as well be used.
This is my apology for asking about machine efficiency.
Robert