I know that using single quotes around a string in PHP is faster than using the double quotes because PHP doesn\'t need to check for variable presence in the single quoted s
I read an article a while back whereby someone actually tested it.
The conclusion was that single quotes are more efficient, but as the other two answers point out, the performance difference won't be significant enough to worry about.