This project provides 6 new functions to PHP that are meant to interact with a websocket (RFC6455) peer.
ws_get_frame_info() - Gets information about an upcoming websockets frame
ws_read_frame() - Reads the data of a websockets frame from a client or server
ws_send_close() - Sends a close frame to the websockets peer
ws_send_ping() - Sends a ping frame to the websockets peer
ws_send_pong() - Sends a pong frame to the websockets peer
These functions are written in low level C so...