问答详情
源自:4-3 cookie的删除与过期时间

此处为什么不能用双引号?

setcookie('test','',time()-1);

这句中test为什么不能用双引号?一用就不过………………

提问者:猿教授 2016-07-12 14:35

个回答

  • 慕粉3513192
    2016-07-12 14:44:14
    已采纳

    单引号内部的变量不会执行
    双引号会执行


    $name = 'hello';
    echo "the $name";

    会输出 the hello

    而如果是单引号

    $name = 'hello';
    echo 'the $name';

    会输出 the $name

  • 111
    2017-04-22 20:46:48

    跟单双引号没关系的。