zz How to implement COMET with PHP
今天在群里遇到一个人,说到web方面的server push的功能。当时无法理解,搜了搜资料。贴过来给大家看看。原贴里面图片连接失效了,我搜了一个,不知道是不是这个图。
Comet is a programming technique that enables web servers to send data to the client without having any need for the client to request it. This technique will produce more responsive applications than classic AJAX. In classic AJAX applications, web browser (client) cannot be notified in real time that the server data model has changed. The user must create a request (for example by clicking on a link) or a periodic AJAX request must happen in order to get new data fro the server.
I will now explain how to implement Comet with PHP programming language. I will demonstrate it on two demos which uses two techniques: the first one is based on hidden <iframe> and the second one is based on classic AJAX non-returning request. The first demo will simply show the server date in realtime on the clients and the second demo will display a mini-chat.
Comet with iframe technique : server timestamp demo
We need:
- A PHP script that will handle the persistent http request (backend.php)
- A HTML file that will load Javascript code and that will show the data coming from the server (index.html)
- The prototype library that will help us to write simple JS code
To understand how it works this schema should help:

The backend script (PHP)
This script will do an infinite loop and will return the server time as long as the client is connected. Call it backend.php:
- <?php
- header("Cache-Control: no-cache, must-revalidate");
- header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
- flush();
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Comet php backend</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- </head>
- <body>
- <script type="text/javascript">
- // KHTML browser don't share javascripts between iframes
- var is_khtml = navigator.appName.match("Konqueror") || navigator.appVersion.match("KHTML");
- if (is_khtml)
- {
- var prototypejs = document.createElement('script');
- prototypejs.setAttribute('type','text/javascript');
- prototypejs.setAttribute('src','prototype.js');
- var head = document.getElementsByTagName('head');
- head[0].appendChild(prototypejs);
- }
- // load the comet object
- var comet = window.parent.comet;
- </script>
- <?php
- while(1) {
- echo '<script type="text/javascript">';
- echo 'comet.printServerTime('.time().');';
- echo '</script>';
- flush(); // used to send the echoed data to the client
- sleep(1); // a little break to unload the server CPU
- }
- ?>
- </body>
- </html>
The client script (HTML)
This HTML document first load the prototype library in the tag, then it create the tag that will contains the server timer , and finally it create a comet javascript object that will connect the backend script to the time container tag.
The comet object will create some invisible iframe tags (depends on the web browser). These iframes are in charge to create the background persistent http connection with the backend script. Notice: this script do not handle possible connection problems between client and server.
- <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
- <script type="text/javascript" src="prototype.js"></script>
- <div id="content">The server time will be shown here</div>
- <script type="text/javascript">
- var comet = {
- connection : false,
- iframediv : false,
- initialize: function() {
- if (navigator.appVersion.indexOf("MSIE") != -1) {
- // For IE browsers
- comet.connection = new ActiveXObject("htmlfile");
- comet.connection.open();
- comet.connection.write("<html>");
- comet.connection.write("<script>document.domain = '"+document.domain+"'");
- comet.connection.write("</html>");
- comet.connection.close();
- cometcomet.iframediv = comet.connection.createElement("div");
- comet.connection.appendChild(comet.iframediv);
- cometcomet.connection.parentWindow.comet = comet;
- comet.iframediv.innerHTML = "<iframe id='comet_iframe' src='./backend.php'></iframe>";
- } else if (navigator.appVersion.indexOf("KHTML") != -1) {
- // for KHTML browsers
- comet.connection = document.createElement('iframe');
- comet.connection.setAttribute('id', 'comet_iframe');
- comet.connection.setAttribute('src', './backend.php');
- with (comet.connection.style) {
- position = "absolute";
- left = top = "-100px";
- height = width = "1px";
- visibility = "hidden";
- }
- document.body.appendChild(comet.connection);
- } else {
- // For other browser (Firefox...)
- comet.connection = document.createElement('iframe');
- comet.connection.setAttribute('id', 'comet_iframe');
- with (comet.connection.style) {
- left = top = "-100px";
- height = width = "1px";
- visibility = "hidden";
- display = 'none';
- }
- comet.iframediv = document.createElement('iframe');
- comet.iframediv.setAttribute('src', './backend.php');
- comet.connection.appendChild(comet.iframediv);
- document.body.appendChild(comet.connection);
- }
- },
- // this function will be called from backend.php
- printServerTime: function (time) {
- $('content').innerHTML = time;
- },
- onUnload: function() {
- if (comet.connection) {
- comet.connection = false; // release the iframe to prevent problems with IE when reloading the page
- }
- }
- }
- Event.observe(window, "load", comet.initialize);
- Event.observe(window, "unload", comet.onUnload);
- </script>
Download it
Here is the tar.gz archive of this demo.
Online demo
Here is the online demo.
From: http://kerphi.zeitoun.net/articles/comet_and_php/
0 条留言
发表评论