push服务器端
function server() {
for ($i = 0, $timeout = 10; $i < $timeout; $i++) {
if (connection_status() != 0) {
exit();
}
$where = array();
$user_id = $user_id = get_user_id();
session_write_close();
$where['user_id'] = $user_id;
$where['time'] = array('elt', time() - 1);
$model = M("Push");
$data = $model -> where($where) -> find();
$where['id'] = $data['id'];
//dump($model);
if ($data) {
sleep(1);
$model -> where("id=" . $data['id']) -> delete();
$this -> ajaxReturn($data['data'], $data['info'], $data['status']);
} else {
sleep(2);
}
}
$this -> ajaxReturn(null, "no-data", 0);
}push客户端
新秀B2C商城系统是一款简洁易用PHP商城系统。可免费下载使用,可用于商业用途,没有时效限制,除版权标识外,所有代码都允许修改。后台功能简介:1、商城设置:基本信息,配送方式,配送范围,支付方式,财务管理;2、商品管理:商品列表,添加商品,商品分类,商品品牌,商品属性;3、订单管理:订单列表,缺货登记;4、用户互动:用户管理,留言管理,评论管理,网站公告,在线客服,用户协议;5、文章管理:文章列表
0
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="keywords" />
<meta name="description" content="description" />
<script type="text/javascript" src="__PUBLIC__/js/jquery.js"></script>
<script type="text/javascript">
var flag = true;
var runing=false;
push_start();
function sendPush(url,vars,callback){
return $.ajax({
type : "POST",
url : url,
data : vars + "&ajax=1",
dataType : "json",
success : callback
});
}
function hide_msg($obj){
runing=true;
setTimeout(function(){
$($obj).find("h4:first").remove();
if($($obj).find("h4:first").length){
hide_msg($obj);
}else{
runing=false;
}
},3000)
}
function show_msg(info){
if(info!="no-data"){
html="<h4><button type=\"button\" class=\"close\" data-dismiss=\"alert\">×</button><span>"+info+"</span></h4>"
$obj=$(".msg",parent.document);
$obj.prepend(html);
if (runing==false){
hide_msg($obj);
}
}
}
function push_start(){
sendPush("{:U(push/server)}","id=1", function(data){
show_msg(data.info);
if (flag){
push_start();
}
});
}
function push_stop() {
flag = false;
}
</script>
</head>
<body>
</body>
</html>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号