Join 4,000+ others and never miss out on new tips, tutorials, and more.
4.x is outdated, please check the latest version 22.x
Latest version:
pecl install openswoole-22.1.2
<?php Swoole\Coroutine\Client->getsockname(): array|false
None
Returns an array, showing its host and port that is being used by the socket.
Get the local socket name of the connection. Returns the host and port. You must be connected before using this method.
<?php
var_dump($client->getSockName());
...
// Output
[
'host' => '127.0.0.1', 'port' => 53652,
]