douping4436 2014-02-09 09:16
浏览 199
已采纳

过期cookie - 神奇的数字-86400

I'm reviewing the code of my framework which deletes cookie on client and here is the piece of code where it does it:

return setcookie($name, NULL, -86400, Cookie::$path, Cookie::$domain, Cookie::$secure, Cookie::$httponly);

I'm particularly interested in why the number is -86400 seconds? Is it just random number or it has any special meaning in some convention? I can expire cookie with -1, can't I?

  • 写回答

1条回答 默认 最新

  • dongshen9686 2014-02-09 09:20
    关注

    -86400 seconds is exactly a day ago. But that aside, I don't think it has any special meaning. Maybe the guy writing this chose this value to also wipe cookies for browsers that are in a different timezone or of people that have their computer clock set to a slightly incorrect time.

    But my guess would be that there used to be 86400 (as a positive number), and the programmer just made it negative to remember the old value, in case they would need it again.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 Odoo17操作下面代码的模块时出现没有'读取'来访问
  • ¥50 .net core 并发调用接口问题
  • ¥15 网上各种方法试过了,pip还是无法使用
  • ¥15 用verilog实现tanh函数和softplus函数
  • ¥15 Hadoop集群部署启动Hadoop时碰到问题
  • ¥15 求京东批量付款能替代天诚
  • ¥15 slaris 系统断电后,重新开机后一直自动重启
  • ¥15 QTableWidget重绘程序崩溃
  • ¥15 谁能帮我看看这拒稿理由啥意思啊阿啊
  • ¥15 关于vue2中methods使用call修改this指向的问题