Skip to content

Instantly share code, notes, and snippets.

@ignasbernotas
Last active July 6, 2022 00:16
Show Gist options
  • Save ignasbernotas/0d685a279fa5f49674d0407a5a51ce23 to your computer and use it in GitHub Desktop.
Save ignasbernotas/0d685a279fa5f49674d0407a5a51ce23 to your computer and use it in GitHub Desktop.
Swoole coroutines
<?php
use Swoole\Coroutine as Co;
Co\run(function () {
for ($i = 0; $i < 100; $i++) {
go(function () use($i) {
usleep(1_000_00 * mt_rand(1,10));
echo "Coroutine $i is done.\n";
});
}
});
echo "Outside any Coroutine Context.\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment