Swoole使用协程


Swoole\Runtime::enableCoroutine();

go(function ()
{
    sleep(5);
    echo "b";
});

go(function ()
{
    sleep(10);
    echo "c";
});