php应用容器workerman_TcpConnection类getRemoteIp接口说明及范例
作者:互联网
getRemoteIp接口说明
string Connection::getRemoteIp()
获得该连接的客户端ip。
getRemoteIp接口范例
use Workerman\Worker;
use Workerman\Connection\TcpConnection;
require_once __DIR__ . '/vendor/autoload.php';
$worker = new Worker('websocket://0.0.0.0:8484');
$worker->onConnect = function(TcpConnection $connection)
{
echo "new connection from ip " . $connection->getRemoteIp() . "\n";
};
// 运行worker
Worker::runAll();
标签:getRemoteIp,TcpConnection,Worker,worker,接口,workerman,connection 来源: https://blog.csdn.net/weixin_44039407/article/details/122074040