Home  >  Article  >  Backend Development  >  What is the difference between double quotes and single quotes in php

What is the difference between double quotes and single quotes in php

王林
王林Original
2020-11-10 14:51:165591browse

The difference between double quotes and single quotes in php is: the fields in double quotes will be parsed by the compiler and then output as HTML code; the fields in single quotes will not be parsed by the compiler, but will be output directly. .

What is the difference between double quotes and single quotes in php

The difference is as follows:

""The fields inside the double quotes will be parsed by the compiler, and then the HTML code will be output.

''The fields enclosed in single quotes are not parsed and are output directly.

(Learning video sharing: java video tutorial)

Note: Single quotation marks run faster than double quotation marks.

Code sample:

$a = '123';
echon $a    //结果是:123
echon '$a'    //结果是:$a
echon "$a"    //结果是:123

Related recommendations:php training

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

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