Skip to content

Instantly share code, notes, and snippets.

@Cvar1984
Last active January 5, 2020 20:21
Show Gist options
  • Save Cvar1984/17055d68b7fd57ad43cc093c43d5fa21 to your computer and use it in GitHub Desktop.
Save Cvar1984/17055d68b7fd57ad43cc093c43d5fa21 to your computer and use it in GitHub Desktop.
<?php
for ($i = 1; $i <= 5; ++$i) { // copy 5 process and daemonize
$pid = pcntl_fork();
if (!$pid) {
for($x=1; $x <=2; $x++) { // loop 2x
echo 'Task ' . $x . PHP_EOL;
sleep(1);
}
//echo 'In child proccess ' . $i . PHP_EOL;
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment