setcookie('test','',time()-1);
这句中test为什么不能用双引号?一用就不过………………
单引号内部的变量不会执行双引号会执行如$name = 'hello';echo "the $name";会输出 the hello而如果是单引号$name = 'hello';echo 'the $name';会输出 the $name
跟单双引号没关系的。