Join 4,000+ others and never miss out on new tips, tutorials, and more.
4.x is outdated, please check the latest version 25.x
Latest version:
pecl install openswoole-25.2.0
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');
});