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\Server->exist(int $fd): bool
The file descriptor number of the client connection you want to check exists or not
If success, it returns 'true', otherwise it returns false
.
Check whether the $fd
which indicates a TCP client connection exists or not.
Returns true
if it does and false
if it does not exist.
This method is completely asynchronous, no IO operations as it is based off shared memory.