What is the difference between ‘ and ” in PHP? [duplicate]

Basically, single-quoted strings are plain text with virtually no special case whereas double-quoted strings have variable interpolation (e.g. echo "Hello $username";) as well as escaped sequences such as “\n” (newline.)

You can learn more about strings in PHP’s manual.

Leave a Comment