Join 2,000+ others and never miss out on new tips, tutorials, and more.
Latest version:
pecl install openswoole-4.11.1
The SWOOLE_HOOK_BLOCKING_FUNCTION
flag will enable coroutine support for blocking PHP functions. Support was added in OpenSwoole v4.4.0
.
This includes support for:
gethostbyname
exec
shell_exec
<?php
Co::set(['hook_flags' => SWOOLE_HOOK_BLOCKING_FUNCTION]);
Co\run(function()
{
echo shell_exec('ls');
});