Home Backend Development PHP Tutorial PHP single quotes and double quotes usage

PHP single quotes and double quotes usage

Aug 22, 2019 am 09:47 AM
php

PHP single quotes and double quotes usage

Many codes sometimes use single quotes or double quotes to contain string content. In fact, a simple summary is that variables in double quotes can be parsed, and single quotes are absolute strings. . Let me introduce it to you in detail below.

Recommended tutorial: PHP video tutorial

1. Define 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:

$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';   
Copy after login

The string "Why doesn't "this" work?" will be divided into three paragraphs. 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 It can be found that the processing results of the two strings below are the same.

$full_name = $first_name . ' ' . $last_name; 
$full_name = "$first_name $last_name";  
Copy after login

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:

$foo = 2; 
echo "foo is $foo"; // 打印结果: foo is 2 
echo 'foo is $foo'; // 打印结果: foo is $foo 
echo "foo is $foo\n"; // 打印结果: foo is 2 (同时换行) 
echo 'foo is $foo\n'; // 打印结果: foo is $foo\n 
$foo = 2; 
echo "foo is $foo"; // 打印结果: foo is 2 
echo 'foo is $foo'; // 打印结果: foo is $foo 
echo "foo is $foo\n"; // 打印结果: foo is 2 (同时换行) 
echo 'foo is $foo\n'; // 打印结果: foo is $foo\n   
Copy after login

As you can see, even the backslash within a single quote string loses its extended meaning (except for the insertion of backslash \\ and insertion of 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 parser processes single quote strings in a relatively simple way, while the processing of double quotes also requires parsing inside the string. It is therefore more complex and therefore slightly slower to process.

When referencing complex variable combinations in strings, some problems may occur. The following code will work normally:

echo "value = $foo"; 
echo "value = $a[$i]"; 
echo "value = $foo"; 
echo "value = $a[$i]";   
Copy after login

But the following code cannot get the results we want:

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

To avoid potential problems in the use of these strings, we usually separate complex variables from strings, like this:

echo 'value = ' . $a[$i][$j];//字符串的连接用点(.)
Copy after login

Another way is to separate complex variables Enclosed in curly braces, the syntax analyzer will recognize it correctly:

echo "value = {$a[$i][$j]}" //打印二维数组$a的某个元素   
Copy after login

3. In the SQL statement

This is often the case The problem encountered is that the SQL statement inserted into the database uses single quotes to define the string. If a string containing single quotes is inserted into the database, the SQL statement will go wrong.

For example:

$sql="insert into userinfo (username,password) Values('O'Kefee','123456')"  
Copy after login

At this time, one of the processing methods is to add the escape character backslash in the SQL statement,

That is:...Values ('O\'Kefee',... 

Of course, you can also use the function addslashes(). The function of this function is to add escape characters,

That is:

$s = addslashes("O'Kefee") ……Values('".$s."',……   
Copy after login

Another method is to set the magic-quotes option in php.ini. If this option is turned on, if there are single quotes in the information submitted through the form, escape characters will be automatically added. Therefore, there is no need to use other Function.

Supplement: This starts with the role of double quotes and single quotes: The fields in double quotes will be interpreted by the compiler and then output as HTML code, but the fields in single quotes are not required. Explanation, output directly.

For example:

$abc='I love u'; 
echo $abc //结果是:I love u 
echo '$abc' //结果是:$abc 
echo "$abc" //结果是:I love u
Copy after login

Therefore, when assigning values ​​to SQL statements in the database, they must 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';
Copy after login

The SQL statement here can be written directly as SQL="select * from table where user= 'abc'"

But if like the following

$user='abc'; 
SQL1="select * from table where user=' ".$user." ' ";对比一下 
SQL2="select * from table where user=' abc ' "
Copy after login

I added a little more space between the single quotes and the double quotes, I hope you can see it clearly.

That means replacing 'abc' with '".$user."' all within a single quote. It just splits 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 strings, so that Understand.

The above is the detailed content of PHP single quotes and double quotes usage. For more information, please follow other related articles on the PHP Chinese website!

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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles