Interview Questions

Would you initialize your strings with single quotes or double quotes?

PHP Interview Questions and Answers


(Continued from previous question...)

Would you initialize your strings with single quotes or double quotes?

Since the data inside the single-quoted string is not parsed for variable substitution, it’s always a better idea speed-wise to initialize a string with single quotes, unless you specifically need variable substitution.

(Continued on next question...)

Other Interview Questions