Home > php教程 > php手册 > body text

php使用cookie显示用户上次访问网站日期的方法,cookie上次访问

WBOY
Release: 2016-06-13 09:16:29
Original
1334 people have browsed it

php使用cookie显示用户上次访问网站日期的方法,cookie上次访问

本文实例讲述了php使用cookie显示用户上次访问网站日期的方法。分享给大家供大家参考。具体实现方法如下:

复制代码 代码如下:

if(!empty($_COOKIE['lastvisit'])){//先判断,是否存在cookie
 echo "您上次访问时间是:".$_COOKIE['lastvisit'];
 setCookie("lastvisit",date("Y-m-d H:i:s"),time()+3600*24*360);
}else{
 echo "您是第一次登录,欢迎!";
 setCookie("lastvisit",date("Y-m-d H:i:s"),time()+3600*24*360);
}
?>


这个每刷新一下,时间就会更新一次。实际应用中,更多的是显示用户上次登录的时间,后续继续补充。

希望本文所述对大家的php程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!