php的浏览历史怎么做,php浏览历史记录的方法
本文實例講述了php瀏覽歷史記錄的方法。分享給大家供大家參考。具體實現方法如下:
/**
* 商品歷史瀏覽記錄
* $data 商品記錄信息
*/
private function _history($data)
{
if(!$data || !is_array($data))
{
return false;
}
//判斷cookie類里面是否有瀏覽記錄
if($this->_request->getCookie('history'))
{
$history = unserialize($this->_request->getCookie('history'));
array_unshift($history, $data); //在瀏覽記錄頂部加入
/* 去除重復記錄 */
$rows = array();
foreach ($history as $v)
{
if(in_array($v, $rows))
{
continue;
}
$rows[] = $v;
}
/* 如果記錄數量多余5則去除 */
while (count($rows) > 5)
{
array_pop($rows); //彈出
}
setcookie('history',serialize($rows),time()+3600*24*30,'/');
}
else
{
$history = serialize(array($data));
setcookie('history',$history,time()+3600*24*30,'/');
}
}
希望本文所述對大家的php程序設計有所幫助。
總結
以上是生活随笔為你收集整理的php的浏览历史怎么做,php浏览历史记录的方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 微软恢复 Xbox《战争机器 1/2/3
- 下一篇: php str splice,php中a