我想设置PHP COOKIE,它应该只存储一天。 将Cookie设置为一天会更容易。
如果用户在下午6点访问该网站,则该Cookie应仅设置为六个小时。
$tomorrow = mktime(0,0,0,$month,$date+1,$year);
其中月,日和年来自PHP日期函数。 上面的代码会像我预期的那样工作吗?
或者有更好的方法吗?
答案 0 :(得分:6)
尝试将strtotime()
函数与tomorrow
关键字一起使用:
$tomorrow = strtotime('tomorrow');