如何在thinkphp下 后台作为客户端用workerman向远程服务器发送socket长链接
thinkphp5.1 封装的server 中 没有 AsyncTcpConnection类 求指点
// 请把代码文本粘贴到下方(请勿用图片代替代码)
/**
Worker控制器扩展类
*/
abstract class Server
{
protected $worker;protected $socket = '';protected $protocol = 'http';protected $host = '0.0.0.0';protected $port = '2346';protected $option = [];protected $context = [];protected $event = ['onWorkerStart', 'onConnect', 'onMessage', 'onClose', 'onError', 'onBufferFull', 'onBufferDrain', 'onWorkerReload', 'onWebSocketConnect'];
如何能够调用AsyncTcpConnection类 作为客户端 发送远程链接
需要保持长连接
largeQ
皈依舞