How to implement message push in php

(*-*)浩
Release: 2023-02-28 14:18:01
Original
5420 people have browsed it

How to implement message push in php

How to develop the message push function when we encounter it?

1. Ajax polling, requesting server data regularly(Recommended learning:PHP video tutorial)

Passed Observing that thinkphp official website seems to also use this method, this method is organized below:

Notify.php //获取通知消息 public function getNotifyCount() { $msg = db('message_logs')->where('isscan',0)->count(); RestfulTools::restData($msg); //这里是封装好的json_encode方法 }
Copy after login
notify.js  消息  {$msgCount} //这是是通过tp的 assign方法分配过来的变量,作为初始值  
Copy after login

The above is the detailed content of How to implement message push in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
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
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!