Home >Backend Development >PHP Tutorial >PHP variables - single quotes do not compile, double quotes compile

PHP variables - single quotes do not compile, double quotes compile

WBOY
WBOYOriginal
2016-07-29 09:16:18857browse
<?<span>php
</span><span>header</span>("Content-type:text/html;charset='utf8'"<span>);
</span><span>error_reporting</span>(<span>E_ALL</span><span>);

</span><span>$sTemp</span> = 'Hello World!<br>'<span>;
</span><span>echo</span> "直接打印输出:".<span>$sTemp</span><span>;
</span><span>echo</span> "在单引号里打印输出:".'$sTemp'; <span>//</span><span> 单引号不编译</span><span>echo</span> "<br>"<span>;
</span><span>echo</span> "在双引号里打印输出:"."<span>$sTemp</span>"; <span>//</span><span> 双引号编译</span>

The above introduces PHP variables - single quotes do not compile, double quotes compile, including aspects of the content, I hope it will be helpful to friends who are interested in PHP tutorials.

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