search
HomeBackend DevelopmentPHP TutorialThe difference between PHP single quotes and double quotes_PHP Tutorial
The difference between PHP single quotes and double quotes_PHP TutorialJul 21, 2016 pm 03:42 PM
phpandusethe differenceapostropheCanexiststringdefinitionquotation marksof

1. Define a string  

In PHP, the definition of a string can use single quotes or double quotes. However, the same single or double quotation marks must be used to define the string. For example, 'Hello' and 'Hello' are illegal string definitions. ​
When defining a string, only one kind of quotation mark is considered as the delimiter, that is, single quotation mark or double quotation mark. Thus, if a string begins with a double quote, only the double quote is parsed by the parser. This way, you can include any other character, even single quotes, within the double-quoted string. The following quotation mark strings are legal:
Php code

Copy code The code is as follows:

$s = " I am a 'single quote string' inside a double quote string";
$s = 'I am a "double quote string" inside a single quote string';
$s = "I am a 'single quote string' inside a double quote string";
$s = 'I am a "double quote string" inside a single quote string';

Why doesn't "this" work?" will be divided into three sections. If you want to express double quotes in this string, you can use the escape character "" (backslash) to become "Why doesn't "this" work?"

2. Single and double quotation marks in string variables

PHP allows us to directly include string variables in double quotation mark strings. We can find the following two The result of string processing is the same.
Copy code The code is as follows:

$full_name = $first_name . ' ' . $last_name;
$full_name = "$first_name $last_name";   

Single quote strings and double quote strings are processed differently in PHP. The contents of a double-quoted string can be interpreted and replaced, while the contents of a single-quoted string are always considered ordinary characters. For example:
Php code
Copy code The code is as follows:

$foo = 2;
echo "foo is $foo"; // Print result: foo is 2
echo 'foo is $foo'; // Print result: foo is $foo
echo "foo is $foon"; // Print result: foo is 2 (line feed at the same time)
echo 'foo is $foon'; // Print result: foo is $foon
$foo = 2;
echo "foo is $foo"; // Print result: foo is 2
echo 'foo is $foo'; // Print result: foo is $foo
echo "foo is $foon"; // Print result: foo is 2 (with newline)
echo 'foo is $foon'; // Print result: foo is $foon   

As you can see, even the backslash in a single quote string loses its extended meaning (except Insert backslash \ and insert single quote '). Therefore, when you want to perform variable substitution and include escape sequences such as n (newline) in a string, you should use double quotes. Single quote strings can be used anywhere else. The processing speed of using single quote strings in scripts will be faster, because the PHP parser processes single quote strings in a relatively simple way, while the processing of double quotes also needs to be parsed inside the string. It is therefore more complex and therefore slightly slower to process.
Some problems may arise when referencing complex combinations of variables in strings. The following code will work fine:
Php code
Copy code The code is as follows:

echo "value = $foo";
echo "value = $a[$i]";
echo "value = $foo";
echo "value = $a[$i]";

The following code cannot get the results we want:
echo "value = $a[$i][$j ]"; //We want to print an element of the two-dimensional array $a.
To avoid these potential problems in using strings, we usually separate complex variables from strings, like this: echo 'value = ' . $a[$i][$j];/ / Use dots (.) to connect strings
Another way is to enclose complex variables in curly braces, so that the syntax analyzer can correctly identify them:
echo "value = {$a[$i] [$j]}" //Print an element of the two-dimensional array $a
In this way, a new problem arises. When we want to quote the curly brace character itself in a string, we need to remember to use the escape character:
Php code
Copy code The code is as follows :

$var = 3;
echo "value = {$var}"; // Print result "value = 3"
echo "value = {$var}"; // Print result "value = {3}"
$var = 3;
echo "value = {$var}"; // Print result "value = 3"
echo "value = {$ var}"; // Print result "value = {3}"


3. In SQL statements

This is a problem that is often encountered. The SQL statement inserted into the database uses single quotes to define strings. If you want Inserting a string containing single quotes into the database will cause an error in this SQL statement.
For example: $sql="insert into userinfo (username,password) Values('O'Kefee','123456')"
At this time, one of the methods is to add escape characters to the SQL statement Backslash,
is:...Values('O'Kefee',... ​
Of course, you can also use the function addslashes(), the function of this function is to add escape characters,
is: $s = addslashes("O'Kefee") ...Values('".$s."',... ​
Another method is to set the magic-quotes option in php.ini. Turn on this option and pass the form If there are single quotes in the submitted information, escape characters will be automatically added, so there is no need to use other functions.
Additional: Let’s start with the functions of double quotes and single quotes: The fields will be interpreted by the compiler and then output as HTML code, but the ones inside the single quotes do not need to be interpreted and will be output directly. For example:

Copy the code The code is as follows:
$abc='I love u';
echo $abc //The result is: I love u
echo '$abc' //The result is:$ abc
echo "$abc" //The result is: I love u


So when assigning values ​​to SQL statements in the database, they should also be used in double quotes SQL="select a, b,c from ..." But there will be single quotes in the SQL statement to quote the field name
For example: select * from table where user='abc';
The SQL statement here can be written directly as SQL=" select * from table where user='abc'"
But if it is like the following:


Copy the code The code is as follows:
$user='abc';
SQL1="select * from table where user=' ".$user." ' "; Compare
SQL2="select * from table where user=' abc ' "


I added a little more space between the single quotes and double quotes, I hope you can see it more clearly.
That is, replace 'abc' with '".$user."' all within a single quote. Just split the entire SQL string. SQL1 can be decomposed into the following three parts
1: "select * from table where user=' "
2: $user
3: " ' "
Use . to connect the strings. So you can understand.

1. Quotes define strings

In PHP, usually a string is defined in a pair of quotation marks, such as:
'I am a string in single quotes'
"I am a string in double quotes"
 The PHP parser uses pairs of quotation marks to judge a string. Therefore, all strings must use the same single or double
quotes to define the start and end. For example, the following string definition is illegal:
"I am not a valid string since I have unmatching quote marks'
'Me neither!"
When defining a string, only one type of quotation marks is used Treated as a delimiter, i.e. single or double quotes. Thus, if a string begins with a double quote
, then only the double quotes will be parsed by the parser. This way, you can include any other character within the double-quoted string, even the single-quote
symbol. The following quote strings are legal:
$s = "I am a 'single quote string' inside a double quote string";
$s = 'I am a "double quote string" inside a single quote string';
When PHP encounters a quote corresponding to the beginning of the string, it thinks it has reached the end of the string, so:
"Why doesn't "this" work?"
It is actually used The PHP syntax parser is divided into three parts:
"Why doesn't " - a double quote string containing a single quote
this - extra characters that the parser cannot process
" work?" — — Ordinary string
The above example attempts to include double quotes within a double quote string, and the parser considers the string to end when it encounters the second double quote
. To achieve the purpose of including quotation marks, the parser must ignore its original meaning when encountering ordinary quotation marks in the string. We add a backslash before the quotation mark
to tell PHP: this quotation mark is part of the string. The correct representation is this:
"Why doesn't "that" work?"
A common problem in English strings is the use of apostrophe ', because it is a single quote, and in English
(English possessive case) is very common in strings. You have to be careful with these characters:
'You'd better escape your apostrophes'
You can see that backslash has its special meaning in strings, when we need to include the backslash itself in the string When , you need to add an extra backslash before the
symbol. For example:
$file = "c:windowssystem.ini";
echo $file; // The print result is: c:windowssystem.ini
$file = "c:\windows\system.ini" ;
echo $file; // The print result is: c:windowssystem.ini
Another way to define strings, which can eliminate the trouble of special characters and make it easier to quote longer texts. The string definition method
starts with the
2. String connection

Strings can be connected using the string concatenation character (.), such as:
$first_name = 'Charlie';
$last_name = 'Brown';
$full_name = $first_name . ' ' . $last_name;
A common use is to create large blocks of HTML string code, assignment signs (=) and connectors (. ) can be abbreviated and combined into the (.=) symbol
, such as:
$html = '';
$html .= '';
for ( $i=0 ; $i$square = $i * $i;
$html .= '';
}
$html .= '
number td> square
' . $i . ' ' . $square . '
';

3. Use variables in strings

This feature allows you to avoid using connections symbols to glue together large numbers of simple strings. PHP allows us to directly include the word
string variable in a double-quoted string. We can find that the processing results of the following two strings are the same.
$full_name = $first_name . ' ' . $last_name;
$full_name = "$first_name $last_name";
Single quote strings and double quote strings are processed differently in PHP. The content in the double-quoted string can be interpreted and replaced, while the content in the single-quoted
string is always considered to be ordinary characters. For example:
$foo = 2;
echo "foo is $foo"; // Print result: foo is 2
echo 'foo is $foo'; // Print result: foo is $foo
echo "foo is $foon"; // Print result: foo is 2 (with newline)
echo 'foo is $foon'; // Print result: foo is $foon
As you can see Yes, even the backslash within a single quote string loses its extended meaning (except for the insertion of a backslash \ and the insertion of a single
quote '). Therefore, when you want to perform variable substitution and include escape sequences such as n (newline character) in a string, you should use double quotes
.Single quote strings can be used anywhere else. The processing speed of using single quote strings in scripts will be faster, because the PHP syntax analyzer processes
single quote strings in a relatively simple way, while the processing of double quotes is also complicated inside the string. It needs to be parsed, so it is more complicated, so the processing speed is slightly slower.
Some problems may arise when referencing complex combinations of variables in strings. The following code will work normally:
echo "value = $foo";
echo "value = $a[$i ]";
The following code cannot get the results we want:
echo "value = $a[$i][$j]"; //We want to print a certain part of the two-dimensional array $a element.
To avoid these potential problems in using strings, we usually separate complex variables from strings, like this:
echo 'value = ' . $a[$i][$j ];
Another way is to enclose complex variables in curly braces, so that the parser can correctly identify them:
echo "value = {$a[$i][$j]}" // Print an element of the two-dimensional array $a
In this way, a new problem arises. When we want to quote the curly brace character itself in the string, we need to remember to use the escape character:
$var = 3;
echo "value = {$var}"; // Print the result "value = 3"
echo "value = {$var}"; // Print result "value = {3}"


3. Slashes and SQL statements
Generating HTML code or SQL query statements is often encountered when writing PHP programs and is an interesting thing. Why do I say this?
Because it involves generating another type of code, and you must carefully consider and follow the writing syntax and rules
required by this type of code.
Let’s take a look at an example. If you want to query the user whose name is "O'Keefe" in the database, the usual form of the SQL statement
is like this:
select * from users where last_name = 'O 'Keefe'
Please note that the English possessive character (apostrophe) of the SQL statement needs to be escaped with a backslash. PHP provides some functions to handle such
situations. The function AddSlashes($str) is used to automatically insert backslash escape characters for quotation mark characters in strings:
$last_name = "O'Keefe ";
$sql = "select * from users where last_name = '" . addslashes($last_name) . "'";
 In this example, you also need to enclose the last_name string in single quotes ( SQL syntax requirements), since the double
quotation mark string is used here, there is no need to escape the pair of single quotation marks. The following statement is the equivalent of using a single quoted string:
$sql = 'select * from users where last_name = '' . addslashes($last_name) . ''';
Any time you want to add a string in a database When writing a string in a string, you must ensure that the quotes inside use escape symbols correctly. This is a common mistake made by many PHP
beginners.


4. Double quotation marks and HTML

Unlike SQL statements, double quotation marks are often used to represent strings in standard HTML language (many browsers now have Strong fault tolerance
, allowing single quotes or even no quotes to represent strings in HTML), for example:
$html = ''. $link.'';
$html = "$link";
HTML language does not support backslash escaping. This will be experienced when we use the hidden inputs of the form to transmit data. The best way to set the value of hidden inputs is to use the htmlspecialchars() function to encode it. The following statement can
normally transmit data that may contain double quotes:
 

1. Quotation marks define strings. To achieve the purpose of including quotation marks, the parser must ignore its original meaning when encountering ordinary quotation marks in the string. We add a backslash in front of the quotation mark to tell PHP: This quotation mark is part of the string and is the correct representation. The method is this: single quote strings can be used anywhere else. The processing speed of using single quote strings in scripts will be faster, because the PHP parser processes single quote strings in a relatively simple way, while the processing of double quotes is due to the internal nature of the string. It also requires parsing, so it's more complex, so the processing speed is slightly slower.

This...double quotes are escaped, single quotes are not escaped
For example: /r/n is a newline, but if you write a file with single quotes, it will not be a newline, but a newline Characters, if written into a file with double quotes, are newlines.
Agreed.

http://www.bkjia.com/PHPjc/320827.html

truehttp: //www.bkjia.com/PHPjc/320827.htmlTechArticle1. Define a string In PHP, you can use single quotes or double quotes to define a string. But the same type of single or double quotes must be used to define the string, such as: 'Hello" and...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么查找字符串是第几位php怎么查找字符串是第几位Apr 22, 2022 pm 06:48 PM

查找方法:1、用strpos(),语法“strpos("字符串值","查找子串")+1”;2、用stripos(),语法“strpos("字符串值","查找子串")+1”。因为字符串是从0开始计数的,因此两个函数获取的位置需要进行加1处理。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Atom editor mac version download

Atom editor mac version download

The most popular open source editor