4

我正在编写一个需要在 PHP 中执行并发任务的脚本。

我做了一个小测试,结果很奇怪。我正在使用 pcntl_fork 生成一个孩子。父进程什么也不做,只是等待子进程完成。

我正在生成 5 个孩子,每个孩子都运行一个函数,该函数生成一个随机数(秒数)并睡眠这么长时间。出于某种原因 - 所有孩子都生成相同的数字。

这是一个代码示例:

private $_child_count = 0;

private function _fork_and_exec($func)
{
    $cid = ++$this->_child_count;
    $pid = pcntl_fork();
    if ($pid){  // parent
        return $pid;
    } else {    // child
        $func($cid);
        //pcntl_waitpid(-1, $status);
        exit;
    }
}
public function parallel_test()
{
    $func = function($id){
        echo 'child ' . $id . ' starts'."\n";
        $wait_time = mt_rand(1,4);
        echo 'sleeping for '.$wait_time."\n";
        sleep($wait_time);
        echo 'child ' . $id . ' ends'."\n";
    };
    $children = [];
    for ($i=0; $i<5; $i++){
        $children[] = $this->_fork_and_exec($func) ."\n";
    }
    pcntl_wait($status);
    echo 'done' ."\n";
    exit;
}

示例输出:

child 1 starts
sleeping for 1
child 2 starts
sleeping for 1
child 3 starts
sleeping for 1
child 4 starts
sleeping for 1
child 5 starts
sleeping for 1
child 1 ends
child 2 ends
child 3 ends
child 4 ends
child 5 ends
done

提前致谢

4

2 回答 2

6

这是因为所有子节点都以相同的状态开始(fork() 复制了代码和数据段)。而且由于 rand 和 mt_rand 是伪随机生成器,它们都会生成相同的序列。

您将不得不重新初始化随机生成器,例如使用进程/线程 ID 或从 /dev/urandom 读取几个字节。

于 2013-02-14T16:17:14.837 回答
1

我真的认为你应该看看pthreads哪个提供了与基于 Posix Threads 的 PHP 兼容的多线程。

简单如

class AsyncOperation extends Thread {
    public function __construct($arg) {
        $this->arg = $arg;
    }
    public function run() {
        if ($this->arg) {
            echo 'child ' . $this->arg . ' starts' . "\n";
            $wait_time = mt_rand(1, 4);
            echo 'sleeping for ' . $wait_time . "\n";
            sleep($wait_time);
            echo 'child ' . $this->arg . ' ends' . "\n";
        }
    }
}
$t = microtime(true);
$g = array();
foreach(range("A","D") as $i) {
    $g[] = new AsyncOperation($i);
}
foreach ( $g as $t ) {
    $t->start();
}

输出

child B starts
sleeping for 3
child B ends
child C starts
sleeping for 3
child C ends
child A starts
sleeping for 4
child A ends
child D starts
sleeping for 4
child D ends
于 2013-02-14T16:31:05.230 回答