标签: php pcntl
我正在运行以下代码。它仅在运行父进程。
$pid = pcntl_fork(); if($pid) { // parent process runs what is here echo $pid; echo "parent\n"; } else { // child process runs what is here echo "child\n"; }
输出:1553172父级
我无法理解,为什么不运行子进程。