Join 4,000+ others and never miss out on new tips, tutorials, and more.
Latest version:
pecl install openswoole-22.1.2 | composer require openswoole/core:22.1.5
<?php OpenSwoole\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,
]