Home Backend Development PHP Tutorial Introduction 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 tutorial

Jul 13, 2016 am 10:55 AM
php introduce about the difference apostrophe and accomplish quotation marks article usage of

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 <<< symbol followed by a custom string, and the last line ends with the custom string and must be in a box. <🎜> <🎜><🎜> 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<10 ; $i++) {
$square = $i * $i;
$html .= '';
}
$html .= '
numbersquare
' . $i . '' . $square . '
';
$html = '';

$html .= '

';
for ( $i=0 ; $i<10 ; $i++) {

$square = $i * $i;

$html .= '

';
}

$html .= '
numbersquare
' . $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 of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the difference between pre-market and after-market trading? Detailed explanation of the differences between pre-market and after-market trading What is the difference between pre-market and after-market trading? Detailed explanation of the differences between pre-market and after-market trading Mar 03, 2025 pm 11:54 PM

In traditional financial markets, pre-market and after-market trading refers to trading activities outside the regular trading period. Although the cryptocurrency market is trading around the clock, trading platforms like Bitget also offer similar features, especially some comprehensive platforms that trade stocks and cryptocurrencies at the same time. This article will clarify the differences in pre-market and after-market trading and explore its impact on currency price. Four major differences between pre-market and after-market trading: The main differences between pre-market and after-market trading and regular trading periods are in four aspects: trading time, liquidity, price fluctuations and trading volume: Trading time: Pre-market trading occurs before the official trading starts, and after-market trading is carried out after the regular trading ends. Liquidity: The liquidity of pre- and after-hours trading is low, there are few traders, and the bid and offer price difference is large; while the liquidity is high during the regular trading period, the price is

Why is Bittensor said to be the 'bitcoin' in the AI ​​track? Why is Bittensor said to be the 'bitcoin' in the AI ​​track? Mar 04, 2025 pm 04:06 PM

Original title: Bittensor=AIBitcoin? Original author: S4mmyEth, Decentralized AI Research Original translation: zhouzhou, BlockBeats Editor's note: This article discusses Bittensor, a decentralized AI platform, hoping to break the monopoly of centralized AI companies through blockchain technology and promote an open and collaborative AI ecosystem. Bittensor adopts a subnet model that allows the emergence of different AI solutions and inspires innovation through TAO tokens. Although the AI ​​market is mature, Bittensor faces competitive risks and may be subject to other open source

Is there any difference between South Korean Bitcoin and domestic Bitcoin? Is there any difference between South Korean Bitcoin and domestic Bitcoin? Mar 05, 2025 pm 06:51 PM

The Bitcoin investment boom continues to heat up. As the world's first decentralized digital asset, Bitcoin has attracted much attention on its decentralization and global liquidity. Although China was once the largest market for Bitcoin, policy impacts have led to transaction restrictions. Today, South Korea has become one of the major Bitcoin markets in the world, causing investors to question the differences between it and its domestic Bitcoin. This article will conduct in-depth analysis of the differences between the Bitcoin markets of the two countries. Analysis of the differences between South Korea and China Bitcoin markets. The main differences between South Korea and China’s Bitcoin markets are reflected in prices, market supply and demand, exchange rates, regulatory supervision, market liquidity and trading platforms. Price difference: South Korea’s Bitcoin price is usually higher than China, and this phenomenon is called “Kimchi Premium.” For example, in late October 2024, the price of Bitcoin in South Korea was once

Vertical proxy: Application scenarios and interpretation of disruptive potential of encryption native proxy Vertical proxy: Application scenarios and interpretation of disruptive potential of encryption native proxy Mar 04, 2025 am 10:21 AM

Artificial intelligence agents (AIAgents) are rapidly integrating into daily operations of enterprises, from large companies to small businesses, almost all areas have begun to be used, including sales, marketing, finance, law, IT, project management, logistics, customer service and workflow automation. We are moving from an era of manual processing of data, performing repetitive tasks, and using Excel tables to an era of autonomous operation by AI agents around the clock, which not only improves efficiency but also significantly reduces costs. Application case of AI agents in Web2: YCombinator's Perspective Apten: A sales and marketing optimization tool combining AI and SMS technology. BildAI: A model that can read architectural blueprints,

What exchange is Nexo? Is Nexo exchange safe? What exchange is Nexo? Is Nexo exchange safe? Mar 05, 2025 pm 07:39 PM

Nexo: Not only is it a cryptocurrency exchange, but also your digital financial manager. Nexo is not a traditional cryptocurrency exchange, but a financial platform that focuses more on cryptocurrency lending. It allows users to obtain loans in cryptocurrency as collateral and provides services to earn interest. While Nexo also offers cryptocurrency buying, selling and redemption capabilities, its core business is crypto lending. This article will explore the operating model and security of Nexo in depth to provide investors with a more comprehensive understanding. Nexo's operating model was founded in 2018 and is headquartered in Zug, Switzerland, and is a pioneer in the field of digital finance. It is different from other centralized exchanges and focuses more on providing comprehensive financial services. Users can buy, sell, trade cryptocurrencies without selling assets and

The difference between Ether and Bitcoin What is the difference between Ether and Bitcoin The difference between Ether and Bitcoin What is the difference between Ether and Bitcoin Mar 19, 2025 pm 04:54 PM

The difference between Ethereum and Bitcoin is significant. Technically, Bitcoin uses PoW, and Ether has shifted from PoW to PoS. Trading speed is slow for Bitcoin and Ethereum is fast. In application scenarios, Bitcoin focuses on payment storage, while Ether supports smart contracts and DApps. In terms of issuance, the total amount of Bitcoin is 21 million, and there is no fixed total amount of Ether coins. Each security challenge is available. In terms of market value, Bitcoin ranks first, and the price fluctuations of both are large, but due to different characteristics, the price trend of Ethereum is unique.

What does closing a virtual currency position mean? Same as selling? How to avoid forced closing of positions? What does closing a virtual currency position mean? Same as selling? How to avoid forced closing of positions? Mar 04, 2025 am 06:51 AM

Detailed explanation of closing positions in virtual currency trading: Strategies to avoid the risk of liquidation. This article will deeply explore the concept of "closing positions" in the virtual currency market, and clarify the difference between it and "sell", and how to effectively avoid the risk of forced liquidation (filtering positions). What is virtual currency closing? Close positions refers to investors ending existing positions through reverse trading, thereby locking in profits and losses. For example, investors holding long positions (buy) can close their positions by selling equal amounts of virtual currency; investors holding short positions (sell) need to buy equal amounts of virtual currency to close their positions. A closing operation is essentially closing or releasing an established investment position. Is closing a position equal to selling? Although long closing does involve selling operations, closing and selling are not exactly the same. Close position definition: End opened

How many times is the U standard 2 times equivalent to the U standard? What is the difference between U standard and currency standard? How many times is the U standard 2 times equivalent to the U standard? What is the difference between U standard and currency standard? Mar 04, 2025 am 07:48 AM

Coin Standard and U-Material Perpetual Contract: Conversion and risk analysis of leverage multiples. The pricing methods of perpetual contracts are mainly divided into two types: coin Standard and U-Material. The currency standard contract is settled in the transaction cryptocurrency (such as BTC, ETH), with the goal of obtaining more of the cryptocurrency; the U standard contract is settled in the stablecoin (such as USDT), with the goal of earning more stablecoins, similar to the traditional gold standard system. Many investors are curious: How many times the leverage at the currency standard is equivalent to the U standard? To put it simply, the conversion between the 2x leverage of the currency standard and the leverage of the U standard is roughly equivalent to the 2x leverage of the U standard. However, this equivalence relationship is not absolute, as currency price fluctuations significantly affect the actual leverage effect. The risk of currency standard leverage will fluctuate with the currency price

See all articles