Gateway::isOnline

说明:

  1. int Gateway::isOnline(string $client_id);

判断$client_id是否还在线

参数

  • $client_id

客户端的client_id

返回值

在线返回1,不在线返回0

范例

  1. use \GatewayWorker\Lib\Gateway;
  2. class Events
  3. {
  4. ...
  5. public static function onMessage($client_id, $message)
  6. {
  7. // $message = '{"type":"say_to_one","to_client_id":100,"content":"hello"}'
  8. $req_data = json_decode($message, true);
  9. // 如果是向某个客户端发送消息
  10. if($req_data['type'] == 'say_to_one'))
  11. {
  12. // 如果不在线就先存起来
  13. if(!Gateway::isOnline($req_data['to_client_id']))
  14. {
  15. // 假设your_store_fun是用来保存未读消息的函数(这个函数不存在,需要自己实现)
  16. your_store_fun($message);
  17. }
  18. else
  19. {
  20. // 在线就转发消息给对应的客户端
  21. Gateway::sendToClient($req_data['to_client_id'], $req_data['content']);
  22. }
  23. }
  24. }
  25. ...
  26. }