doushi5024 2015-06-24 06:47
浏览 107

当变量用于cookie名称时cookie不设置

On my server when using the code:

<?php
$expire=time()+60*60*24*360;

$cookie_name = 'user';
$cookie_value = "John";
setcookie($cookie_name, $cookie_value, $expire, "/");

$cookie_value = "Jane";
setcookie('userb', $cookie_value, $expire, "/");

print_r($_COOKIE);
?>

The first cookie does not set, but the second one does. For some reason it appears that using a variable to identify the cookie name causes it not to set. This problem does NOT occur on my localhost (everything works as expected). So I'm not even really sure where to begin.

  • 写回答

3条回答 默认 最新

  • 普通网友 2015-06-24 06:55
    关注

    You cant use more than 1 setcookie function.

    <?php
    $expire=time()+60*60*24*360;
    $cookie_name = 'user';
    $cookie_value = "John";
    setcookie($cookie_name, $cookie_value, $expire, "/");
    //$cookie_value = "Jane";
    //setcookie('userb', $cookie_value, $expire, "/");
    print_r($_COOKIE);
    ?>
    
    评论

报告相同问题?

悬赏问题

  • ¥15 安装svn网络有问题怎么办
  • ¥15 Python爬取指定微博话题下的内容,保存为txt
  • ¥15 vue2登录调用后端接口如何实现
  • ¥65 永磁型步进电机PID算法
  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥15 latex怎么处理论文引理引用参考文献