Home > Backend Development > PHP Tutorial > php基础篇-双引号、单引号的区别

php基础篇-双引号、单引号的区别

WBOY
Release: 2016-06-23 13:52:07
Original
1120 people have browsed it

php在以前的认知中,以为单引号和双引号没有什么区别,如果外面使用了单引号,那么里面就是用双引号,如果外面使用了双引号,里面就使用单引号,一直以为单引号、双引号就是这点区别,但是还是有一点区别的。

区别就是,双引号串中的内容可以被解释而且替换,而单引号串中的内容总被认为是普通字符。


<?php $str ="hello world!";echo "$str";echo '$str';
Copy after login

结果会输出:hello world!$str

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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template