请教用php怎么实现 当别人浏览小弟我的信息时,小弟我的电脑出现提示?谢谢

WBOY
Release: 2016-06-13 13:11:06
Original
853 people have browsed it

请问用php如何实现 当别人浏览我的信息时,我的电脑出现提示?多谢!
当我注册登录一交友网站后,有其他人浏览我的个人信息时,我的电脑出现一个提示框:“有某某人正在浏览我的信息。。。”,
请问用php如何实现
当别人浏览我的信息时,我的电脑出现提示?多谢!!!

------解决方案--------------------
有人浏览你空你用session记录下来用户的id,js没隔一会请求后台(php),后台用浏览过你的用户id获取对应用户的信息然后反给前端的js,js做个弹出特效,思路就是这样,当然也还有其他办法,不过我认为这种还不错,具体实现就看你的了
------解决方案--------------------
每个页面都写上ajax定时上报/下载, 服务端在memcached里记录一下上报信息, key是uid,value是一个序列化数组:{访问时间,访问用户uid.}

比如A用户访问B用户主页, 那么Ajax上报服务器: key=B,value={访问时间,A},服务器就往memcached里写一下。

B用户ajax定时下载状态,当然就是询问:key=B的value,服务器将访问时间小于1分钟的访问者信息返回。

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 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!