You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public function onConnect($connection)
{
echo "new connection from ip " . $connection->getRemoteIp() . "\n";
$connection->send('receive success');
}
public function onMessage($connection, $data)
{
$connection->send($data);
}
onMessage可以发送消息;onConnect无法推送消息,但是在客户端cli可以打印IP
The text was updated successfully, but these errors were encountered:
onMessage可以发送消息;onConnect无法推送消息,但是在客户端cli可以打印IP
The text was updated successfully, but these errors were encountered: