on("open",function ($client) { $fd = $client->getTcpClient()->sock; echo "fd: $fd is open\n"; $msg = '{"cmd":"test","act":"broad","data":"你好,朋友们!","time":1558492565,"token":"aasasfa"}'; $client->send($msg); }); $client->on("message", function ($client, $frame) { $fd = $client->getTcpClient()->sock; echo "fd: $fd received: {$frame->data}\n"; }); $client->on("close", function ($client) { $fd = $client->getTcpClient()->sock; echo "fd: $fd is closed\n"; }); $client->connect("192.168.2.200", 9090);