PHP总结
Posted Yfling
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP总结相关的知识,希望对你有一定的参考价值。
单引号与双引号的区别:
单引号内部的变量不会执行
双引号会执行
如
$name = ‘hello‘;
echo "the $name";
会输出 the hello
而如果是单引号
$name = ‘hello‘;
echo ‘the $name‘;
会输出 the $name
以上是关于PHP总结的主要内容,如果未能解决你的问题,请参考以下文章