Are there any performance benefits to using single quotes instead of double quotes in php?

In other words, would there be a performance benefit of:

$foo = 'Test';

versus

$foo = "Test";
link|improve this question

80% accept rate
1  
those both look like single quotes, somehow... – Yar Jan 27 '09 at 3:31
Good point, @Dan, fixed that for ya. – paxdiablo Jan 27 '09 at 3:34
theres some good speed inforamtion about this issue here, stackoverflow.com/questions/13620 – Uberfuzzy Jan 27 '09 at 4:54
feedback

6 Answers

up vote 43 down vote accepted

Yes. It is slightly faster to use single quotes.

This is because when you use double quotes PHP has to parse to check if there are variables in there.

So, if you do:

$bar = 'world';
$foo = "hello $bar";
$baz = 'hello $bar';

$foo would contain "hello world" while $baz could contain "hello $bar"

Whenever you are not using variables inside a string it's good practice to just use single quotes so PHP doesn't have to parse the string.

link|improve this answer
2  
Wouldn't this just be a compile-time check? – Kyle Cronin Jan 27 '09 at 3:03
43  
And, on top of that, by using less pixels, you reduce greenhouse emissions. – paxdiablo Jan 27 '09 at 3:32
4  
"Wouldn't this just be a compile-time check?"-nobody Why yes it would. It's a scripted language, so compile time is run time. – Ed S. Jan 27 '09 at 3:36
4  
Actually, since faster computation means less CPU time means less watts consumed, single quotes really do reduce greenhouse emissions. – Crashworks Jan 27 '09 at 4:28
8  
@Paolo Begantino: do you actually have any proof of this? phpbench.com respectfully disagrees with you every time I load it. – A. Rex Jan 27 '09 at 5:27
show 7 more comments
feedback

Live benchmarks:

http://phpbench.com/

There is actually a subtle difference when concatenating variables with single vs double quotes.

link|improve this answer
Uh, every time I reload double quotes are FASTER ... – A. Rex Jan 27 '09 at 5:25
Ooh. cool site! thanks! – GeoffreyF67 Jan 27 '09 at 5:27
I think that it depends on hardware configuration and compiled php. – FDisk Oct 17 '11 at 8:32
feedback

I seem to remember that the developer of the forum software, Vanilla replaced all the double quotes in his code with single quotes and noticed a reasonable amount of performance increase.

I can't seem to track down a link to the discussion at the moment though.

link|improve this answer
feedback

Double quotes can be much slower. I read from several places that that it is better to do this

'parse me '.$i.' times'

than

"parse me $i times"

Although I'd say the second one gave you more readable code.

link|improve this answer
7  
Uh, no: in my experience working with other people's code, the first one is much more readable. – staticsan May 21 '09 at 4:02
@staticsan just get yourself good editor with syntax highlighting, dude. – Your Common Sense Apr 9 '11 at 16:31
2  
I do use a syntax-highlighting editor. The highlighting works much better with the first variant. – staticsan Apr 12 '11 at 2:02
PhpStorm editor works good with highlighting on both examples. – FDisk Oct 17 '11 at 8:34
feedback

there is a difference when concatenating variables... and what you are doing with the result... and if what you are doing is dumping it to output, is or isn't output buffering on.

also, what is the memory situation of the server? typically memory management on a higher level platform is worse than that at lower platforms...

$a = 'parse' . $this; 

is managing memory at the user code platform level...

$a = "parse $this";

is managing memory at the php system code platform level...

so these benchmarks as related to CPU don't tell the full story.

running the benchmark 1000 times vs running the benchmark 1000 times on a server that is attempting to run that same simulation 1000 times concurrently... you might get drastically different results depending on the scope of the application.

link|improve this answer
feedback

Practically there is no difference at all! See the timings: http://micro-optimization.com/single-vs-double-quotes

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.