count = 4; // 接收到浏览器发送的数据时回复hello world给浏览器 $http_worker->onMessage = function(TcpConnection $connection, Request $request) { // 向浏览器发送hello world $connection->send('hello world'); }; // 运行worker Worker::runAll();