lucasdang311 / PHP-Websockets

A Websockets server written in PHP.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PHP WebSockets
==============

A WebSockets server written in PHP.
-----------------------------------

This project provides the functionality of an RFC-6455 (or Version 13) WebSockets server.  It can be used as a stand-alone server, or as the back-end of a normal HTTP server that is WebSockets aware.

In order to use PHP WebSockets, you must have the ability to arbitrarilly execute scripts, which almost always means having shell access to your server, at a minimum.  It is strongly encouraged that you have the ability to configure your machine's HTTP server.  It is strongly discouraged to allow arbitrary execution of scripts from a web interface, as this is a major security hole.

To use:

Do not place the files in your web server's document root -- they are not intended to be ran through a web browser or otherwise directly accessible to the world.  They are intended to be ran through PHP's Command Line Interface (CLI).

The main class, `WebSocketServer`, is intended to be inherrited by your class, and the methods `connected`, `closed`, and `process` should be overridden.  In fact, they are abstract, so they _must_ be overridden.

Future plans include allowing child processes forked from the controlling daemon to support broadcasts and to relay data from one socket in a child process to another socket in a separate child proccess.

Browser Support
---------------

Google Chrome 

Mozilla Firefox

Internet Explorer 10 (not yet released to public)

Safari Nightly Build (not yet released to public)

Note: Safari is not supported because it does not support RFC-6455, it supports the old hixie-76/hybi-00 versions, which is a potential security issue.  Because of these potential security issues, I am no longer planning to support older versions of the WebSocket protocol.

About

A Websockets server written in PHP.

License:BSD 3-Clause "New" or "Revised" License