0
我看到了, http://php.net/manual/en/function.posix-setsid.php pcntl_fork()示例在底部。該代碼工作正常。我可以結合它的PHP線程? http://www.php.net/manual/en/class.thread.php如何在線程中使用php pcntl_fork?
<?php
$pid = pcntl_fork(); // fork
if ($pid < 0)
exit;
else if ($pid) // parent
exit;
else { // child
$sid = posix_setsid();
if ($sid < 0)
exit;
for($i = 0; $i <= 60; $i++) { // do something for 5 minutes
sleep(5);
}
}
?>
好的,謝謝。所以最好不要在PHP中使用線程。 – user2380555