PHP WebSocket
- 授权协议: 未知
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: http://github.com/nicokaiser/php-websocket
软件介绍
PHP WebSocket是一个简单的 WebSocket服务器的PHP实现,遵循WebSocket RFC的draft75和draft76规范。支持Flash Socket Policy请求。整个服务器采用模块化设计,非常易于扩展。
客户端代码示例:
var server = new WebPush('ws://localhost:8000/echo');
server.bind('open', function() {
// Connection openend...
server.send("Hello, I'm there!");
});
server.bind('close', function() {
// Connection closed...
});
server.bind('message', function(data) {
// Data received
});
The Tangled Web
Michal Zalewski / No Starch Press / 2011-11-26 / USD 49.95
"Thorough and comprehensive coverage from one of the foremost experts in browser security." -Tavis Ormandy, Google Inc. Modern web applications are built on a tangle of technologies that have been de......一起来看看 《The Tangled Web》 这本书的介绍吧!
