Hi,
I'm trying to write fast code, and I'm wondering which is faster,
generating strings with double quotes or single quotes - aka, $string
= "My name is $name"; or $string = 'My name is '.$name;.
Also, if you have any tips for writing fast code, please share
them :-).
Thanks,
--James.
I'm trying to write fast code, and I'm wondering which is faster,
generating strings with double quotes or single quotes - aka, $string
= "My name is $name"; or $string = 'My name is '.$name;.
Also, if you have any tips for writing fast code, please share
them :-).
Thanks,
--James.
Comment