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
Since OpenSwoole v4.10.0 the data type of $seconds is fixed inline with PHP
The SWOOLE_HOOK_SLEEP
flag will enable coroutine support for blocking sleep PHP functions. Support was added in OpenSwoole v4.2.0
.
This includes support for:
sleep
usleep
time_nanosleep
time_sleep_until
<?php
Co::set(['hook_flags' => SWOOLE_HOOK_SLEEP]);
Co\run(function()
{
go(function()
{
sleep(1);
echo '1' . PHP_EOL;
});
go(function()
{
echo '2' . PHP_EOL;
});
});