DEV Community

Discussion on: 4 PHP Tricks to Boost Script Performance

Collapse
 
devmount profile image
Andreas • Edited

Double quotes appear to be slower than single quotes because PHP parses their content for variables, e.g.: "a house with $n windows", but on the other hand, single quotes are parsed as well, e.g. 'a \'quoted\' string'

Collapse
 
diek profile image
diek

I'm looking for the source, that's why it surprised me, it has no sense.