Home >Backend Development >PHP Tutorial >设置cookie问题

设置cookie问题

WBOY
WBOYOriginal
2016-06-23 14:10:16929browse

if(isset($_COOKIE['history'])){	$history = explode(',', $_COOKIE['history']);    array_unshift($history, $id);    $history = array_unique($history);	    while (count($history) > 5)    {        array_pop($history);    }		setcookie('history',implode(',', $history),80000);	echo 'add';}else{	setcookie('history',$id,80000);	echo 'new';}


为什么一直都是输出new呢


回复讨论(解决方案)

呼唤 亲爱的版主。

你设置的失效期太小了!

你应该认真看一下说明
expire Cookie 过期的时间。这是个 Unix 时间戳,即从 Unix 纪元开始的秒数。换而言之,通常用 time() 函数再加上秒数来设定 cookie 的失效期。或者用 mktime()来实现。
time()+60*60*24*30 将设定 cookie 30 天后失效。
如果未设定,cookie 将会在会话结束后(一般是浏览器关闭)失效。  

你设置的失效期太小了!

你应该认真看一下说明
expire Cookie 过期的时间。这是个 Unix 时间戳,即从 Unix 纪元开始的秒数。换而言之,通常用 time() 函数再加上秒数来设定 cookie 的失效期。或者用 mktime()来实现。
time()+60*60*24*30 将设定 cookie 30 天后失效。
如果未设定,cookie 将会在会话结束后(一般是浏览器关闭)失效。  
多谢亲爱的版主第3次解决了我的问题
确实没认真看。多谢了。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn