我一直在研究这个简单的websocket教程 http://net.tutsplus.com/tutorials/javascript-ajax/start-using-html5-websockets-today/
我复制了代码,只更改了3行代码(更改了端口号)。
var host = "ws://localhost:8000/socket/server/startDaemon.php"; //from client.php
$WebSocket = new socketWebSocket('localhost',8000); //from startDaemon.php
public function __construct($host='localhost',$port=8000,$max=100) //from socket.class.php
我将所有这些文件放在linode服务器上的一个文件夹中,我得到的是“套接字状态:3(已关闭)”。你可以在这里看到client.php http://ckfrantz.com/arena/client.php
感谢您的时间。