# Gateway::isOnline
## 说明:
~~~
int Gateway::isOnline(string $client_id);
~~~
判断$client_id是否还在线
## 参数
* $client_id
客户端的client_id
## 返回值
在线返回1,不在线返回0
## 范例
~~~
use \GatewayWorker\Lib\Gateway;
class Events
{
...
public static function onMessage($client_id, $message)
{
// $message = '{"type":"say_to_one","to_client_id":100,"content":"hello"}'
$req_data = json_decode($message, true);
// 如果是向某个客户端发送消息
if($req_data['type'] == 'say_to_one'))
{
// 如果不在线就先存起来
if(!Gateway::isOnline($req_data['to_client_id']))
{
// 假设your_store_fun是用来保存未读消息的函数(这个函数不存在,需要自己实现)
your_store_fun($message);
}
else
{
// 在线就转发消息给对应的客户端
Gateway::sendToClient($req_data['to_client_id'], $req_data['content']);
}
}
}
...
}
~~~
- 快速入门
- 魔际客服系统V1.0简介
- 新手上路
- 注册并创建应用
- 通信过程及聊天记录保存
- 实时消息回调
- Lib/Geteway类提供的接口
- sendToAll
- sendToClient
- closeClient
- isOnline
- bindUid
- unbindUid
- isUidOnline
- getClientIdByUid
- getUidByClientId
- sendToUid
- joinGroup
- leaveGroup
- sendToGroup
- getClientCountByGroup
- getClientSessionsByGroup
- getAllClientCount
- getAllClientSessions
- setSession
- updateSession
- getSession
- 服务端集成
- 入门
- 用户体系集成
- 聊天记录
- 文件上传下载
- 发送消息
- 群组管理
- 聊天室管理
- 应用管理
- Web IM集成
- Web IM 介绍
- 集成方式
- Web SDK基础功能
- 消息
- 好友管理
- 群组管理
- 聊天室管理
- 微信小程序 Demo
- Web SDK API Doc
- Web IM SDK 更新日志
- React Native集成
- React Native Demo 介绍