The difference between single and double quotes in PHP

Source: Internet
Author: User
In PHP, the definition of a string can use single quotation marks ", or you can use double quotation marks" ".

However, you must use the same single or double quotation marks to define strings, such as: ' Hello World ' and ' Hello World ' are illegal string definitions.

What's the difference between a single quote and a double quote?

PHP allows us to include string variables directly in a double quote string.

The contents of a single quote string are always considered ordinary characters, so the content in single quotes is not escaped more efficiently.

Like what:

$str = ' Hello '; echo "str is $STR"; Operation Result: STR is Helloecho ' str is $str '; Operation Result: STR is $STR

In PHP, the variables ($var) and special characters (\ r \ n) in double quotes are escaped, and the content in single quotes is not escaped (so it is more efficient).

Using the words, I used to like to write in the SQL string $sql = "SELECT * FROM table where id = $id", so that the inside of the $id can be escaped, single quotation marks will not work.

There is no difference between single and double quotes in JavaScript, as long as paired use is OK.

I use single quotes in JavaScript mostly because JavaScript deals more with HTML, and you don't need to escape the quotes of attributes in HTML when outputting HTML fragments.
In short, see the actual situation, how convenient how to use.

  • Related Article

    Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.