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
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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.