猿教授
2016-07-12 14:35
setcookie('test','',time()-1);
这句中test为什么不能用双引号?一用就不过………………
单引号内部的变量不会执行
双引号会执行
如
$name = 'hello';
echo "the $name";
会输出 the hello
而如果是单引号
$name = 'hello';
echo 'the $name';
会输出 the $name
跟单双引号没关系的。
PHP进阶篇
181835 学习 · 2577 问题
相似问题