We're a place where coders share, stay up-to-date and grow their careers.
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'
"a house with $n windows"
'a \'quoted\' string'
I'm looking for the source, that's why it surprised me, it has no sense.
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'
I'm looking for the source, that's why it surprised me, it has no sense.