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

王林
Release: 2023-03-07 15:24:01
Original
5642 people have browsed it

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
Copy after login

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!

Related labels:
source:php.cn
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!