,方便内部系统推送数据,Text协议格式 文本+换行符
$inner_text_worker = new Worker('Text://0.0.0.0:9899');
$inner_text_worker,表示向那个uid的页面推送数据
$data = json_decode($buffer, true);
$uid = $data['uid'];
//通过workerman,向uid的页面推送数据
$ret = sendMessageByUid($uid, $data['percent']);
// 返回推送结果// 连接断开时删除映射
unset($worker->uidConnections[$connection->uid]);
}
};
// 向所有验证的用户推送数据$worker->uidConnections as $connection)
{
$connection->send($message);
}
}
// 针对uid推送数据