Hello, I'm just wondering what's more costly, something like:
echo "Hello world, my name is $name";
or
echo 'Hello world, my name is '.$name;
I know in this case it wouldn't make much difference, but maybe here it would:
for($i = 0; $i < 10000; $i++)
{
echo 'Hello world, my name is '.$name;
}
Thanks in advance!