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\Server->resume(int $fd)
The file descriptor number of the client connection you want to resume from a pause
If success, it returns 'true', otherwise it returns false
.
Resume data receiving for the specified $fd
client.
After calling this method, if the client is found using $fd
the connection will be added back to the event loop so it can continue processing incoming data again.
Checkout pause for how to pause the client connection.