Home >Backend Development >PHP Tutorial > php 如何做弹框提醒

php 如何做弹框提醒

WBOY
WBOYOriginal
2016-06-13 13:30:19952browse

php 怎么做弹框提醒
需要定时给消息接收者一个弹框提醒,类似QQ邮箱接收到新邮件的那种弹框提醒

------解决方案--------------------
很好用:http://download.csdn.net/detail/dmtnewtons/4219436
------解决方案--------------------
JS定时器啊, 别指望HTTP服务器来告诉你.
------解决方案--------------------
不可以
sleep 暂停了当前程序的执行,并没有关闭当前的 http 会话
这样的话,每个用户上来都要占用一个 socket 连接。系统的资源很快就会耗尽了

值得注意的是,有很多人试图用 ajax 去模拟长连接。这是自欺欺人的作法
没有任何资料显示,作为 ajax 核心部件的 XMLHttpRequest 具有连接重用的能力
既然如此,你在服务器端不就是白等了吗

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