tcp服务器B,并和tcp服务器B保持长连接,接收tcp服务器B数据,通过tcp服务器A发送给设备
#### 为此你搜索到了哪些方案及不适用的原因
没找到适合的方案
找到的方案:
```php(stream_socket_client('tcpB'));
// tcpB处理连接成功回调
self::$tcpServerConnection->onConnect// tcpB处理接收到的数据回调
self::$tcpServerConnection->onMessage = function ($tcpServerConnection, $tcpServerDataLog::info('tcpB服务器:接收到目标TCb服务器的数据-' .$tcpServerData);
};
// tcpB处理连接关闭回调
self::$tcpServerConnection->onClose = function