search
HomeBackend DevelopmentPHP TutorialIntroduction to the difference and usage of single quotes and double quotes in php_PHP tutorial
Introduction to the difference and usage of single quotes and double quotes in php_PHP tutorialJul 13, 2016 am 10:55 AM
phpintroduceaboutthe differenceapostropheandaccomplishquotation marksarticleusageof

The article uses a large number of implementations to introduce the usage and difference between single quotes and double quotes. Students who need to know more can refer to this article carefully.

In PHP, usually a string is defined within a pair of quotes

Follow the steps below:

The code is as follows Copy code
 代码如下 复制代码

$out = str_replace(array('rn', 'r', 'n'), '', $out);PHP 提供三种定义字符串的方法:单引号、双引号、本地文档(英文叫做 here document 或者 heredoc)。

$out = str_replace(array('rn', 'r', 'n'), '', $out);PHP provides three ways to define strings: single quotes, double quotes, local documents (English called a here document or heredoc).


Single quotes: Using single quotes is the most efficient method because PHP does not check built-in variables and escape sequences in single-quoted strings. The only characters that need to be escaped are backslashes and single quotes themselves.


Double quotes:

Built-in variables and escape sequences are checked, but escaped single quotes are not recognized. This also shows what is wrong with the code at the beginning. The correct approach is to use double quotes to define the escape sequence for newlines:
 代码如下 复制代码
$out = str_replace(array("rn", "r", "n"), '', $out);


Local documentation:

Check all built-in variables and escape sequences, double quotes do not need to be escaped. For example:
 代码如下 复制代码
echo this is a "here document" example.
just for test.
The code is as follows Copy code
echo this is a "here document" example. just for test.

EOT; Simply record it to deepen your impression.
 代码如下 复制代码

'I am a string in single quotes'
"I am a string in double quotes"

, such as:

The code is as follows Copy code
'I am a string in single quotes'

"I am a string in double quotes"

 代码如下 复制代码

 

"I am not a valid string since I have unmatching quote marks'
'Me neither!"

The PHP parser uses pairs of quotation marks to determine a string. Therefore, all strings must use the same single or double Quotation marks to define start and end. For example, the following string definition is illegal:
The code is as follows Copy code
"I am not a valid string since I have unmatching quote marks' 'Me neither!"

When defining a string, only one kind of quotation mark is considered as the delimiter, that is, single quotation mark or double quotation mark. So, if a string is represented by a double quote
, then only double quotes are parsed by the parser. This way, you can include any other character within the double-quoted string, even single-quoted
Number. The following quotation mark strings are legal:

The code is as follows Copy code
 代码如下 复制代码

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

  当PHP遇到与串的开头相对应的引号时,便认为已经到了字符串尾部,于是:

"Why doesn't "this" work?"

  实际上被PHP语法分析器分成三个部分:

"Why doesn't "——包含一个单引号的双引号串
this——多余的字符,分析器无法处理
" work?" ——普通字符串

$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 the quotation mark corresponding to the beginning of the string, it thinks that it has reached the end of the string, so:

 代码如下 复制代码

"Why doesn't "that" work?"

"Why doesn't "this" work?"


is actually divided into three parts by the PHP parser:

 代码如下 复制代码

'You'd better escape your apostrophes'

"Why doesn't " - a double quote string containing a single quote

this - extra characters, the parser cannot handle
"work?" - ordinary string

 代码如下 复制代码

$file = "c:windowssystem.ini";
echo $file; // 打印结果为: c:windowssystem.ini
$file = "c:windowssystem.ini";
echo $file; // 打印结果为: c:windowssystem.ini

The above example attempts to include double quotes within a double quote string, and the parser considers the string to be terminated when it encounters the second double quote

Finished. To achieve the purpose of including quotation marks, the parser must ignore its original meaning when encountering ordinary quotation marks in the string. We use the quotation mark
Add a backslash in front of it to tell PHP that this quote is part of the string. The correct representation is like this:

The code is as follows Copy code

"Why doesn't "that" work?"

A common problem in English strings is the use of apostrophe ', because it is a single quote, and it is very common in English strings

(English possessive case). You have to be careful with these characters:

The code is as follows Copy code
 代码如下 复制代码

$first_name = 'Charlie';
$last_name = 'Brown';
$full_name = $first_name . ' ' . $last_name;

'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, we need to include it in This symbol is preceded by an extra backslash. For example:
The code is as follows Copy code
$file = "c:windowssystem.ini"; echo $file; // The print result is: c:windowssystem.ini $file = "c:windowssystem.ini"; echo $file; // The print result is: c:windowssystem.ini
Another way to define strings that eliminates the trouble of special characters and makes it easier to quote longer texts. The string definition method The method starts with the 2. String connection Strings can be connected using the string concatenation character (.), such as:
The code is as follows Copy code
$first_name = 'Charlie'; $last_name = 'Brown'; $full_name = $first_name . ' ' . $last_name;

A common use is to create large blocks of HTML string code. The assignment symbol (=) and the connector (.) can be abbreviated and combined into the (.=) symbol
Number, such as:

The code is as follows Copy code
 代码如下 复制代码

$html = '

';
$html .= '';
for ( $i=0 ; $i $square = $i * $i;
$html .= '';
}
$html .= '
number square
' . $i . ' ' . $square . '
';
$html = '';

$html .= '

';
for ( $i=0 ; $i $square = $i * $i;

$html .= '

';
} $html .= '
number square
' . $i . ' ' . $square . '
';
 代码如下 复制代码

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


3. Use variables in strings

 代码如下 复制代码

$foo = 2;
echo "foo is $foo"; // 打印结果: foo is 2
echo 'foo is $foo'; // 打印结果: foo is $foo
echo "foo is $foon"; // 打印结果: foo is 2 (同时换行)
echo 'foo is $foon'; // 打印结果: foo is $foon

This feature allows you to join a large number of simple strings without using concatenation symbols. PHP allows us to include the word

directly in a double quoted string String variables, we can find that the processing results of the following two strings are the same.

The code is as follows Copy code

$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 double-quoted strings can be interpreted and replaced, while single-quoted

The contents of the number string are always considered ordinary characters. For example:
 代码如下 复制代码

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

The code is as follows Copy code

$foo = 2;

echo "foo is $foo"; // Print result: foo is 2
 代码如下 复制代码

echo "value = $a[$i][$j]"; //我们希望打印二维数组$a的某个元素。

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 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 Number. Single quote strings can be used anywhere else. It will be faster to use single quote strings in scripts because the PHP parser is sensitive to The processing method of single quotation mark string is relatively simple, while the processing of double quotation mark is more complicated because the string also needs to be parsed internally, 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:
The code is as follows Copy code
echo "value = $foo"; echo "value = $a[$i]";
But the following code cannot get the results we want:
The code is as follows Copy code
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:

The code is as follows Copy code
 代码如下 复制代码

echo 'value = ' . $a[$i][$j];

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]}" //打印二维数组$a的某个元素

The code is as follows Copy code

echo "value = {$a[$i][$j]}" //Print an element of the two-dimensional array $a

 代码如下 复制代码

$var = 3;
echo "value = {$var}"; // 打印结果 "value = 3"
echo "value = {$var}"; // 打印结果 "value = {3}"

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:

The code is as follows Copy code

$var = 3; echo "value = {$var}"; // print 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 you say that?

Because this involves generating another type of code, you must carefully consider and follow the syntax and conventions required for writing this code
 代码如下 复制代码

select * from users where last_name = 'O'Keefe'

but.


Let’s look at an example. If you want to query the user whose name is “O’Keefe” in the database, the usual SQL statement is in the form

It goes like this:
 代码如下 复制代码

$last_name = "O'Keefe";
$sql = "select * from users where last_name = '" . addslashes($last_name) . "'";

The code is as follows Copy code

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 this
 代码如下 复制代码

$sql = 'select * from users where last_name = '' . addslashes($last_name) . ''';

In this case, the purpose of the function AddSlashes($str) is to automatically insert the backslash escape character for the quote character in the string:
The code is as follows Copy code
$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 (required by SQL syntax), since double is used here. A string of quotes, so there is no need to escape the pair of single quotes. The following statement is the equivalent of using a single quote string:
The code is as follows Copy code
$sql = 'select * from users where last_name = '' . addslashes($last_name) . ''';

Anytime you write a string into a database, you have to make sure that the quotes inside are properly escaped, which is a lot of PHP
Common mistakes made by beginners.


4. Double quotes and HTML

Unlike SQL statements, double quotes are often used to represent strings in standard HTML language (many browsers now have strong fault tolerance capabilities
Yes, it is allowed to use single quotes or even no quotes to represent strings in HTML), for example:

The code is as follows Copy code
 代码如下 复制代码

$html = ''.$link.'';
$html = "$link";

$html = ''.$link.'';

$html = "$link";


HTML language does not support backslash escaping, which will happen when we use hidden inputs of the form to transmit data Got it. The best way to set the value of hidden inputs is to use the htmlspecialchars() function to encode it. The following statements can be
 代码如下 复制代码

   

To transmit data that may contain double quotes normally:

The code is as follows Copy code
 


1. Quotes 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 character. If you write a file with double quotes, it will be a newline.

Finally, check out what other websites have to say

” ” Fields enclosed in double quotes will be interpreted by the compiler and then output as HTML code.

‘ ‘ The words in the single quotes are not interpreted and are output directly.

It can be seen from the literal meaning that single quotes are faster than double quotes.
 代码如下 复制代码
$abc=’my name is tome’;
echo $abc //结果是:my name is tom
echo ‘$abc’ //结果是:$abc
echo “$abc” //结果是:my name is tom

For example:

The code is as follows Copy code
$abc='my name is tome';

echo $abc //The result is: my name is tom

echo ‘$abc’ //The result is: $abc
 代码如下 复制代码

select * from abc_table where user_name=’abc’;

echo “$abc” //The result is: my name is tom
Especially when using MYSQL statements, the usage of double quotes and single quotes can be confusing to novices. Here, I will give an example to illustrate. Assume that constants are used in the query conditions, for example:
The code is as follows Copy code
select * from abc_table where user_name=’abc’;

SQL statement can be written as:

The code is as follows
 代码如下 复制代码

SQLstr = “select * from abc_table where user _name= ‘abc’” ;

Copy code

 代码如下 复制代码

$user_name = $_REQUEST['user_name']; //字符串变量

SQLstr = “select * from abc_table where user _name= ‘abc’” ;

 代码如下 复制代码

$user=array (”name”=> $_REQUEST['user_name‘,"age"=>$_REQUEST['age'];//数组变量

Assume that variables are used in the query conditions, for example:
 代码如下 复制代码

SQLstr = “select * from abc_table where user_name = ‘ ” . $user_name . ” ‘ “;

SQLstr = “select * from abc_table where user_name = ‘ ” . $user["name"] . ” ‘ “;

The code is as follows

Copy code
 代码如下 复制代码

SQLstr=”select * from abc_table where user_name = ‘ abc ‘ ” ;

SQLstr=”select * from abc_table where user_name =’ ” . $user _name . ” ‘ “;

SQLstr=”select * from abc_table where user_name =’ ” . $user["name"] . ” ‘ “;

$user_name = $_REQUEST['user_name']; //String variable

 代码如下 复制代码
1:”select * from table where user_name = ‘ ” //固定SQL语句
2:$user //变量
3:” ‘ ”
1,2,3部分字符串之间用”.”
or
The code is as follows

Copy code
$user=array ("name"=> $_REQUEST['user_name‘,"age"=>$_REQUEST['age'];//Array variable The SQL statement can be written as:
The code is as follows Copy code
SQLstr = “select * from abc_table where user_name = ‘ . $user_name . ” ‘ “; SQLstr = “select * from abc_table where user_name = ‘ ” . $user["name"] . ” ‘ “;
Compare:
The code is as follows Copy code
SQLstr=”select * from abc_table where user_name = ‘ abc ‘ ” ; SQLstr=”select * from abc_table where user_name =’ ” . $user _name . ” ‘ “; SQLstr=”select * from abc_table where user_name =’ ” . $user["name"] . ” ‘ “; SQLstr can be decomposed into the following 3 parts: http://www.bkjia.com/PHPjc/632232.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632232.htmlTechArticleThe article uses a large number of implementations to introduce the usage and difference between single quotes and double quotes. Students who need to know more You can refer to this article carefully. In PHP, usually one character...
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 22, 2022 pm 05:02 PM

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

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

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

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 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

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

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

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 Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

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.