walkor / workerman
An asynchronous event driven PHP framework for easily building fast, scalable network applications.
Fund package maintenance!
Open Collective
Patreon
Installs: 3 976
Dependents: 6
Suggesters: 0
Security: 0
Stars: 11 158
Watchers: 465
Forks: 2 261
Open Issues: 87
Requires
- php: >=8.1
- ext-json: *
Requires (Dev)
- guzzlehttp/guzzle: ^7.0
- mockery/mockery: 2.0.x-dev
- pestphp/pest: 2.x-dev
- phpstan/phpstan: 1.11.x-dev
Suggests
- ext-event: For better performance.
Conflicts
- ext-swow: <v1.0.0
- dev-master
- v5.0.0-rc.1
- v5.0.0-beta.8
- v5.0.0-beta.7
- v5.0.0-beta.6
- v5.0.0-beta.5
- v5.0.0-beta.4
- v5.0.0-beta.3
- v5.0.0-beta.2
- v5.0.0-beta.1
- 4.2.x-dev
- 4.1.x-dev
- v4.1.16
- v4.1.15
- v4.1.14
- v4.1.13
- v4.1.12
- v4.1.11
- v4.1.10
- v4.1.9
- v4.1.8
- v4.1.7
- v4.1.6
- v4.1.5
- v4.1.4
- v4.1.3
- v4.1.2
- v4.1.1
- v4.1.0
- 4.0.x-dev
- v4.0.47
- v4.0.46
- v4.0.45
- v4.0.44
- 4.0.43
- v4.0.42
- v4.0.41
- v4.0.40
- v4.0.39
- v4.0.38
- v4.0.37
- v4.0.36
- v4.0.35
- 4.0.34
- v4.0.33
- v4.0.31
- v4.0.30
- 4.0.29
- v4.0.28
- v4.0.27
- v4.0.26
- v4.0.25
- v4.0.24
- v4.0.23
- v4.0.22
- v4.0.21
- 4.0.20
- v4.0.19
- v4.0.18
- v4.0.17
- v4.0.16
- v4.0.15
- v4.0.14
- v4.0.13
- v4.0.12
- v4.0.11
- v4.0.10
- v4.0.9
- v4.0.8
- v4.0.7
- v4.0.6
- v4.0.5
- v4.0.4
- v4.0.3
- v4.0.2
- v4.0.1
- v4.0.0
- 3.x-dev
- v3.5.35
- v3.5.34
- v3.5.33
- v3.5.32
- v3.5.31
- v3.5.30
- v3.5.29
- v3.5.28
- v3.5.27
- v3.5.26
- v3.5.25
- v3.5.24
- v3.5.23
- v3.5.22
- v3.5.21
- v3.5.20
- v3.5.19
- v3.5.18
- v3.5.17
- v3.5.16
- v3.5.15
- v3.5.14
- v3.5.13
- v3.5.12
- v3.5.11
- v3.5.10
- v3.5.9
- v3.5.8
- v3.5.7
- v3.5.6
- v3.5.5
- v3.5.4
- v3.5.3
- v3.5.2
- v3.5.1
- v3.5.0
- v3.4.7
- v3.4.6
- v3.4.5
- v3.4.4
- v3.4.3
- v3.4.2
- v3.4.1
- v3.4.0
- v3.3.9
- v3.3.8
- v3.3.7
- v3.3.6
- v3.3.5
- v3.3.4
- v3.3.3
- v3.3.1
- v3.3.0
- v3.2.9
- v3.2.8
- v3.2.7
- v3.2.6
- v3.2.5
- v3.2.2
- v3.2.0
- v3.1.9
- v3.1.8
- v3.1.7
- v3.1.6
- v3.1.5
- v3.1.4
- v3.1.3
- v3.1.2
- v3.1.1
- v2.1.6
This package is auto-updated.
Last update: 2024-11-06 15:40:05 UTC
README
What is it
Workerman is an asynchronous event-driven PHP framework with high performance to build fast and scalable network applications. Workerman supports HTTP, Websocket, SSL and other custom protocols. Workerman supports event extension.
Requires
A POSIX compatible operating system (Linux, OSX, BSD)
POSIX and PCNTL extensions required
Event extension recommended for better performance
Installation
composer require workerman/workerman
Documentation
Basic Usage
A websocket server
<?php use Workerman\Worker; require_once __DIR__ . '/vendor/autoload.php'; // Create a Websocket server $ws_worker = new Worker('websocket://0.0.0.0:2346'); // Emitted when new connection come $ws_worker->onConnect = function ($connection) { echo "New connection\n"; }; // Emitted when data received $ws_worker->onMessage = function ($connection, $data) { // Send hello $data $connection->send('Hello ' . $data); }; // Emitted when connection closed $ws_worker->onClose = function ($connection) { echo "Connection closed\n"; }; // Run worker Worker::runAll();
An http server
use Workerman\Worker; require_once __DIR__ . '/vendor/autoload.php'; // #### http worker #### $http_worker = new Worker('http://0.0.0.0:2345'); // 4 processes $http_worker->count = 4; // Emitted when data received $http_worker->onMessage = function ($connection, $request) { //$request->get(); //$request->post(); //$request->header(); //$request->cookie(); //$request->session(); //$request->uri(); //$request->path(); //$request->method(); // Send data to client $connection->send("Hello World"); }; // Run all workers Worker::runAll();
A tcp server
use Workerman\Worker; require_once __DIR__ . '/vendor/autoload.php'; // #### create socket and listen 1234 port #### $tcp_worker = new Worker('tcp://0.0.0.0:1234'); // 4 processes $tcp_worker->count = 4; // Emitted when new connection come $tcp_worker->onConnect = function ($connection) { echo "New Connection\n"; }; // Emitted when data received $tcp_worker->onMessage = function ($connection, $data) { // Send data to client $connection->send("Hello $data \n"); }; // Emitted when connection is closed $tcp_worker->onClose = function ($connection) { echo "Connection closed\n"; }; Worker::runAll();
Enable SSL
<?php use Workerman\Worker; require_once __DIR__ . '/vendor/autoload.php'; // SSL context. $context = [ 'ssl' => [ 'local_cert' => '/your/path/of/server.pem', 'local_pk' => '/your/path/of/server.key', 'verify_peer' => false, ] ]; // Create a Websocket server with ssl context. $ws_worker = new Worker('websocket://0.0.0.0:2346', $context); // Enable SSL. WebSocket+SSL means that Secure WebSocket (wss://). // The similar approaches for Https etc. $ws_worker->transport = 'ssl'; $ws_worker->onMessage = function ($connection, $data) { // Send hello $data $connection->send('Hello ' . $data); }; Worker::runAll();
Custom protocol
Protocols/MyTextProtocol.php
namespace Protocols; /** * User defined protocol * Format Text+"\n" */ class MyTextProtocol { public static function input($recv_buffer) { // Find the position of the first occurrence of "\n" $pos = strpos($recv_buffer, "\n"); // Not a complete package. Return 0 because the length of package can not be calculated if ($pos === false) { return 0; } // Return length of the package return $pos + 1; } public static function decode($recv_buffer) { return trim($recv_buffer); } public static function encode($data) { return $data . "\n"; } }
use Workerman\Worker; require_once __DIR__ . '/vendor/autoload.php'; // #### MyTextProtocol worker #### $text_worker = new Worker('MyTextProtocol://0.0.0.0:5678'); $text_worker->onConnect = function ($connection) { echo "New connection\n"; }; $text_worker->onMessage = function ($connection, $data) { // Send data to client $connection->send("Hello world\n"); }; $text_worker->onClose = function ($connection) { echo "Connection closed\n"; }; // Run all workers Worker::runAll();
Timer
use Workerman\Worker; use Workerman\Timer; require_once __DIR__ . '/vendor/autoload.php'; $task = new Worker(); $task->onWorkerStart = function ($task) { // 2.5 seconds $time_interval = 2.5; $timer_id = Timer::add($time_interval, function () { echo "Timer run\n"; }); }; // Run all workers Worker::runAll();
AsyncTcpConnection (tcp/ws/text/frame etc...)
use Workerman\Worker; use Workerman\Connection\AsyncTcpConnection; require_once __DIR__ . '/vendor/autoload.php'; $worker = new Worker(); $worker->onWorkerStart = function () { // Websocket protocol for client. $ws_connection = new AsyncTcpConnection('ws://echo.websocket.org:80'); $ws_connection->onConnect = function ($connection) { $connection->send('Hello'); }; $ws_connection->onMessage = function ($connection, $data) { echo "Recv: $data\n"; }; $ws_connection->onError = function ($connection, $code, $msg) { echo "Error: $msg\n"; }; $ws_connection->onClose = function ($connection) { echo "Connection closed\n"; }; $ws_connection->connect(); }; Worker::runAll();
Use HTTP proxy
<?php require __DIR__ . '/vendor/autoload.php'; use Workerman\Connection\AsyncTcpConnection; $worker = new \Workerman\Worker(); $worker->onWorkerStart = function($worker){ echo '开始链接' . PHP_EOL; $url = 'ws://stream.binance.com:9443/ws'; $con = new AsyncTcpConnection($url); $con->transport = 'ssl'; // $con->proxySocks5 = '127.0.0.1:1080'; $con->proxyHttp = '127.0.0.1:25378'; $con->onConnect = function(AsyncTcpConnection $con) { $ww = [ 'id' => 1, 'method' => 'SUBSCRIBE', 'params' => [ "btcusdt@aggTrade", "btcusdt@depth" ] ]; echo '链接成功'; $con->send(json_encode($ww)); echo 'ok'; }; $con->onMessage = function(AsyncTcpConnection $con, $data) { echo $data; }; $con->onClose = function (AsyncTcpConnection $con) { echo 'onClose' . PHP_EOL; }; $con->onError = function (AsyncTcpConnection $con, $code, $msg) { echo "error [ $code ] $msg\n"; }; $con->connect(); }; \Workerman\Worker::runAll();
Use Socks5 proxy
<?php require __DIR__ . '/vendor/autoload.php'; use Workerman\Connection\AsyncTcpConnection; $worker = new \Workerman\Worker(); $worker->onWorkerStart = function($worker){ echo '开始链接' . PHP_EOL; $url = 'ws://stream.binance.com:9443/ws'; $con = new AsyncTcpConnection($url); $con->transport = 'ssl'; $con->proxySocks5 = '127.0.0.1:1080'; // $con->proxyHttp = '127.0.0.1:25378'; $con->onConnect = function(AsyncTcpConnection $con) { $ww = [ 'id' => 1, 'method' => 'SUBSCRIBE', 'params' => [ "btcusdt@aggTrade", "btcusdt@depth" ] ]; echo '链接成功'; $con->send(json_encode($ww)); echo 'ok'; }; $con->onMessage = function(AsyncTcpConnection $con, $data) { echo $data; }; $con->onClose = function (AsyncTcpConnection $con) { echo 'onClose' . PHP_EOL; }; $con->onError = function (AsyncTcpConnection $con, $code, $msg) { echo "error [ $code ] $msg\n"; }; $con->connect(); }; \Workerman\Worker::runAll();
proxy supports TLS1.3, no Sniproxy channel
Available commands
php start.php start
php start.php start -d
php start.php status
php start.php status -d
php start.php connections
php start.php stop
php start.php stop -g
php start.php restart
php start.php reload
php start.php reload -g
Benchmarks
https://www.techempower.com/benchmarks/#section=data-r19&hw=ph&test=plaintext&l=zik073-1r
Other links with workerman
Donate
LICENSE
Workerman is released under the MIT license.