我试图创建一个守护进程来处理多个子线程。 但是子线程似乎并没有将信号发送回父调用的函数。 我曾试图把它拿出来之类的,并使它成为一个标准功能,但似乎并没有帮助的。
class Daemon {
public function __construct() {
$set = pcntl_signal(SIGCHLD, array($this, 'childSignalHandler'));
$pid = pcntl_fork();
if ($pid == -1) {
echo 'could not fork';
} elseif ($pid) {
// parent
sleep(20);
// this would keep running and spawn other children from time to time
} else {
// child
sleep(5);
// should call childSignalHandler() in parent
}
}
public function childSignalHandler($pid) {
echo 'child is dead';
}
}
new Daemon();