Possible Duplicate:
PHP: different quotes?
Simple question:
What is the difference between ' and " in php? When should I use either?
Simple question: What is the difference between ' and " in php? When should I use either? |
|||||||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Basically, single-quoted strings are plain text with virtually no special case whereas double-quoted strings have variable interpolation (e.g. You can learn more about strings in PHP's manual. |
|||
|
|
|
There are 3 syntax used to declare strings, in PHP <= 5.2 : With single quotes :
For instance :
Will output :
For instance :
Will output :
For instance :
Will get you :
|
||||
|
|
|
Any variables inside a " quoted string will be parsed. Any variables in a ' quoted string will not be parsed, and will be shown literally as the variable name. For this reason, ' quoted strings are very slightly faster for PHP to process.
I'd say use ' quotes unless you want variables inside your strings. |
|||
|
|
|
The difference is, strings between double quotes (") are parsed for variable and escape sequence substitution. Strings in single quotes (') aren't. So, using double quotes (") you can do:
which will produce
The same in single quotes returns the literal string. Also, the characters that need to be escaped. If you have a string like:
you would probably use single quotes, to avoid having to escape the quotes in the string and vice-versa. |
|||
|
|
|
In one word: when you would like to all your special chars (like \n) and varables (like $number) be noticed and process. |
|||
|
|