PHP总结

Posted on 2016-10-17 23:22  风铃同学  阅读(88)  评论(0编辑  收藏  举报
单引号与双引号的区别:
单引号内部的变量不会执行
双引号会执行

$name = 'hello';
echo "the $name";
会输出 the hello
而如果是单引号
$name = 'hello';
echo 'the $name';
会输出 the $name