


In programming languages, whether it is single quotes or double quotes, they all play a very important role, and the same is true in the PHP language . Compared with ASP, PHP's quotation marks are easier to use. Let's introduce the difference between single quotation marks and double quotation marks.
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 It is part of the string. The correct expression method is this: single quote string can be used in more related places. Using single quote string in script (batch file) will process faster and faster. It should be PHP syntax parser. The processing method for single-quote strings is relatively simple, while the processing of double-quotes is more complicated because the string also needs to be parsed internally, so the processing speed is slightly slower.
The double quotes are escaped, but the single quotes are not escaped. In PHP, a string is usually defined in a pair of quotation marks, such as:
<ol class="dp-c"> <li class="alt"><span><span class="string">'I am a string in single quotes'</span><span> </span></span></li> <li> <span class="string">"I am a string in double quotes"</span><span> </span> </li> </ol>
The PHP syntax parser uses pairs of quotation marks to judge a string. Therefore, all strings must use the same single or double quotes to define the beginning and end. For example, the following string definition is illegal:
<ol class="dp-c"> <li class="alt"><span><span>"I am not a valid string since I have unmatching quote marks' </span></span></li> <li><span>'Me neither!" </span></li> </ol>
When defining a string, only one type of quotation mark is considered a delimiter, that is, a single quotation mark Quotation marks or double quotes. Thus, if a string begins with a double quote, only the double quote is parsed by the parser. This way, you can include any more relevant characters in the double-quoted string, even single quotes. The following quotation mark strings are all legal:
<ol class="dp-c"> <li class="alt"><span><span class="vars">$s</span><span> = </span><span class="string">"I am a 'single quote string' inside a double quote string"</span><span>; </span></span></li> <li> <span class="vars">$s</span><span> = </span><span class="string">'I am a "double quote string" inside a single quote string'</span><span>; </span> </li> </ol>
When PHP encounters a quotation mark corresponding to the beginning of the string, it considers that the string has been reached Tail, so:
<ol class="dp-c"><li class="alt"><span><span class="string">"Why doesn't "</span><span>this</span><span class="string">" work?"</span><span> </span></span></li></ol>
is actually divided into three parts by the PHP syntax parser:
"Why doesn't "— — A double-quoted string containing a single quote
this — extra characters that the parser cannot handle
" work?" — a normal string
above This CASE 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 in front of the quotation mark to tell PHP: this quotation mark is part of the string, the correct expression The method is like this:
<ol class="dp-c"><li class="alt"><span><span class="string">"Why doesn't "that" work?"</span><span> </span></span></li></ol>
A common problem in English strings is the use of apostrophe ', which should be a single quote at all, and Very common in English strings (English possessive case). You have to be careful with these characters:
<ol class="dp-c"><li class="alt"><span><span class="string">'You'd better escape your apostrophes'</span><span> </span></span></li></ol>
You can see that backslash has its special meaning in strings, when we need to When a backslash itself is included, an additional backslash is required before the symbol. For example:
<ol class="dp-c"> <li class="alt"><span><span class="vars">$file</span><span> = </span><span class="string">"c:windowssystem.ini"</span><span>; </span></span></li> <li> <span class="func">echo</span><span> </span><span class="vars">$file</span><span>; </span><span class="comment">// 打印结果为: c:windowssystem.ini </span><span> </span> </li> <li class="alt"> <span class="vars">$file</span><span> = </span><span class="string">"c:\windows\system.ini"</span><span>; </span> </li> <li> <span class="func">echo</span><span> </span><span class="vars">$file</span><span>; </span><span class="comment">// 打印结果为: c:windowssystem.ini </span><span> </span> </li> </ol>
Another string definition method that eliminates the trouble of special characters and makes it easier to quote longer texts. This string definition method starts with the
2. String links
Strings can be linked using the string linker (.), such as:
<ol class="dp-c"> <li class="alt"><span><span class="vars">$first_name</span><span> = </span><span class="string">'Charlie'</span><span>; </span></span></li> <li> <span class="vars">$last_name</span><span> = </span><span class="string">'Brown'</span><span>; </span> </li> <li class="alt"> <span class="vars">$full_name</span><span> = </span><span class="vars">$first_name</span><span> . </span><span class="string">' '</span><span> . </span><span class="vars">$last_name</span><span>; </span> </li> </ol>
A common use is to create large blocks of HTML string source code. The assignment symbol (=) and link symbol (.) can be abbreviated and merged into (.=) symbols, such as:
<ol class="dp-c"><li class="alt"><span><span class="vars">$html</span><span> = </span><span class="string">'<table>'<span>; </span><li> <span class="vars">$html</span><span> .= </span><span class="string">'<tr> <td>number</td> <td>square</td> </tr>'</span><span>; </span> </li> <li class="alt"> <span class="keyword">for</span><span> ( </span><span class="vars">$i</span><span>=0 ; </span><span class="vars">$i</span><span><span class="vars">$i</span><span>++) { </span></span> </li> <li> <span class="vars">$square</span><span> = </span><span class="vars">$i</span><span> * </span><span class="vars">$i</span><span>; </span> </li> <li class="alt"> <span class="vars">$html</span><span> .= </span><span class="string">'<tr> <td>'<span> . </span><span class="vars">$i</span><span> . </span><span class="string">'</span> </td> <td>'<span> . </span><span class="vars">$square</span><span> . </span><span class="string">'</span> </td> </tr>'</span><span>; </span> </li> <li><span>} </span></li> <li class="alt"> <span class="vars">$html</span><span> .= </span><span class="string">'</span> </li> </table>'</span><span>; </span></span></li></ol>
3. Use variables in strings
This function allows you to paste without using link symbols Lots of simple strings. PHP allows us to directly include string variables in double-quoted strings. We can find that the processing results of the following two strings are the same.
<ol class="dp-c"> <li class="alt"><span><span class="vars">$full_name</span><span> = </span><span class="vars">$first_name</span><span> . </span><span class="string">' '</span><span> . </span><span class="vars">$last_name</span><span>; </span></span></li> <li> <span class="vars">$full_name</span><span> = </span><span class="string">"$first_name $last_name"</span><span>; </span> </li> </ol>
Single quote strings and double quote strings are processed differently in PHP. The content of words in a double-quote string can be parsed and replaced, while the content of words in a single-quote string is always considered to be ordinary characters. For example:
<ol class="dp-c"> <li class="alt"><span><span class="vars">$foo</span><span> = 2; </span></span></li> <li> <span class="func">echo</span><span> </span><span class="string">"foo is $foo"</span><span>; </span><span class="comment">// 打印结果: foo is 2 </span><span> </span> </li> <li class="alt"> <span class="func">echo</span><span> </span><span class="string">'foo is $foo'</span><span>; </span><span class="comment">// 打印结果: foo is $foo </span><span> </span> </li> <li> <span class="func">echo</span><span> </span><span class="string">"foo is $foon"</span><span>; </span><span class="comment">// 打印结果: foo is 2 (同时换行) </span><span> </span> </li> <li class="alt"> <span class="func">echo</span><span> </span><span class="string">'foo is $foon'</span><span>; </span><span class="comment">// 打印结果: foo is $foon </span><span> </span> </li> </ol>
As you can see, even the backslash inside a single quote string loses its extended meaning (except adding backslash and add single quotes '). 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 quotation mark strings can be used in more related places. Using single quotation mark strings in scripts (batch files) will be faster for speed reading. The PHP syntax parser should handle single quotation mark strings. It is relatively simple, but the processing of double quotes is more complicated because it also needs to be parsed inside the string, so the processing speed is slightly slower.
Some problems may arise when referencing complex combinations of variables in strings. The following source code will work fine:
<ol class="dp-c"> <li class="alt"><span><span class="func">echo</span><span> </span><span class="string">"value = $foo"</span><span>; </span></span></li> <li> <span class="func">echo</span><span> </span><span class="string">"value = $a[$i]"</span><span>; </span> </li> </ol>
The following source code cannot get the results we want:
<ol class="dp-c"><li class="alt"><span><span class="func">echo</span><span> </span><span class="string">"value = $a[$i][$j]"</span><span>; </span><span class="comment">//我们希望打印二维数组$a的某个元素。 </span><span> </span></span></li></ol>
To avoid potential problems in the use of these strings, we usually put Complex variables are separated from the string, like this:
<ol class="dp-c"><li class="alt"><span><span class="func">echo</span><span> </span><span class="string">'value = '</span><span> . </span><span class="vars">$a</span><span>[</span><span class="vars">$i</span><span>][</span><span class="vars">$j</span><span>]; </span></span></li></ol>
Another way is to enclose complex variables in curly braces, The grammar parser will correctly identify:
<ol class="dp-c"><li class="alt"><span><span class="func">echo</span><span> </span><span class="string">"value = {$a[$i][$j]}"</span><span> </span><span class="comment">//打印二维数组$a的某个元素 </span><span> </span></span></li></ol>
这样,又出现新问题了。当我们想在字串中引用花括号字符本身时,就要记得使用转义符了:
<ol class="dp-c"> <li class="alt"><span><span class="vars">$var</span><span> = 3; </span></span></li> <li> <span class="func">echo</span><span> </span><span class="string">"value = {$var}"</span><span>; </span><span class="comment">// 打印结果 "value = 3" </span><span> </span> </li> <li class="alt"> <span class="func">echo</span><span> </span><span class="string">"value = {$var}"</span><span>; </span><span class="comment">// 打印结果 "value = {3}" </span><span> </span> </li> </ol>
三、斜杠和SQL语句
生成HTML源代码或SQL查询语句是编写PHP程序时经常遇到而且是件有趣的问题。为什么这么说呢,应该这涉及到生成另外一种类型的源代码,你必须仔细地考虑和遵循这种源代码所要求的编写语法和规则。
我们来看这样一个CASE,假如你想查询数据库中名字是“O'Keefe”的用户,通常SQL语句的形式是这样的:
<ol class="dp-xml"><li class="alt"><span><span>select * from users where </span><span class="attribute">last_name</span><span> = 'O'</span><span class="attribute-value">Keefe</span><span>' </span></span></li></ol>
请说明SQL语句这个英语所有格(撇号)需使用反斜杠转义。PHP专门给予了一些函数来处理这样的情况,函数AddSlashes($str)的用途根本就是电子在字串中对引号字符添入反斜杠转义符:
<ol class="dp-c"> <li class="alt"><span><span class="vars">$last_name</span><span> = </span><span class="string">"O'Keefe"</span><span>; </span></span></li> <li> <span class="vars">$sql</span><span> = </span><span class="string">"select * from users where last_name = '"</span><span> . </span><span class="func">addslashes</span><span>(</span><span class="vars">$last_name</span><span>) . </span><span class="string">"'"</span><span>; </span> </li> </ol>
在这个CASE中,你还要在last_name字串外面括上单引号(SQL语法要求),由于那里使用的是双引号串,所以对这对单引号就无须使用转义了。下面的这个语句是使用单引号串的等价形式:
<ol class="dp-c"><li class="alt"><span><span class="vars">$sql</span><span> = </span><span class="string">'select * from users where last_name = ''</span><span> . </span><span class="func">addslashes</span><span>(</span><span class="vars">$last_name</span><span>) . </span><span class="string">'''</span><span>; </span></span></li></ol>
任何时候你要在数据库中写入字串,你都必须确保里面的引号正确使用了转义符号,这是很多PHP初学者常犯的错误。
四、双引号和HTML
与SQL语句不相同,在标准HTML语言中双引号常被用来表达字串(现在很多浏览器具备较强的容错功能,允许在HTML中用单引号甚至不用引号表达字符串),例如:
<ol class="dp-c"> <li class="alt"><span><span class="vars">$html</span><span> = </span><span class="string">'<a><span>.</span><span class="vars">$url</span><span>.</span><span class="string">'">'</span><span>.</span><span class="vars">$link</span><span>.</span><span class="string">'</span></a>'</span><span>; </span></span></li> <li> <span class="vars">$html</span><span> = </span><span class="string">"<a>$link</a>"</span><span>; </span> </li> </ol>
HTML语言不支持反斜杠转义,这一点在我们使用列表单的hidden inputs来传输数据的时候就会有所体会了。设置hidden inputs的值的最好办法,是使用htmlspecialchars()函数来编码。下面的语句可以正常传输一个可能包含双引号的数据:
<ol class="dp-xml"><li class="alt"><span><span class="tag"><span class="tag-name">input</span><span> </span><span class="attribute">type</span><span>=</span><span class="attribute-value">hidden</span><span> </span><span class="attribute">name</span><span>=</span><span class="attribute-value">var</span><span> </span><span class="attribute">value</span><span>=</span><span class="attribute-value">"<?php echo htmlspecialchars($var) ?>"</span><span class="tag">></span><span> </span></span></span></li></ol>
通过本文的介绍,希望对你有帮助。

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

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

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

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

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

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

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

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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

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),

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.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
