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

来源:4-3 cookie的删除与过期时间

猿教授

2016-07-12 14:35

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

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

写回答 关注

2回答

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

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


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

    会输出 the hello

    而如果是单引号

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

    会输出 the $name

    猿教授

    非常感谢!

    2017-06-09 21:30:29

    共 1 条回复 >

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

    跟单双引号没关系的。

PHP进阶篇

轻松学习PHP中级课程,进行全面了解,用PHP快速开发网站程序

181835 学习 · 2577 问题

查看课程

相似问题