Jump to content

double or single quotes for PHP


cbassett03

Recommended Posts

When using statements such as ECHO, or when setting a variable equal to a text value (Such as $name = "Joe")

Should you use double quotes or a single quote?

 

Is one better (or more secure) than the other?  I've seen it done both ways in books and online (code examples).

 

What is the standard (or generally accepted standard, if there is one) regarding this?

Link to comment
https://forums.phpfreaks.com/topic/265899-double-or-single-quotes-for-php/
Share on other sites

A string in double quotes will be parsed. There is information about this in the manual. http://www.php.net/manual/en/language.types.string.php#language.types.string.parsing

 

If you don't have any variables within it, and especially if you plan to use double quotes like in HTML, use single quotes. If you plan to have apostrophes, or variables that you want to parse, use double quotes.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.