PHP forks&了shell_exec

时间:2014-05-23 02:07:27

标签: php fork shell-exec

我有一个包含以下代码的PHP脚本:

<?php

$task_pids = array();

for ( $i = 0; $i <= 60; $i++ )
{
    $task_pids[$i] = pcntl_fork();
    if ( ! $task_pids[$i] )
    {
        $count = intval( trim( shell_exec( "/usr/local/bin/ffmpeg -i \"http://127.0.0.1:23931\" 2>&1 | grep -v grep | grep -c 'Stream #0'" ) ) );

        posix_kill( getmypid(), 9 );
    }
}


for ( $i = 0; $i <= 60; $i++ )
{
    pcntl_waitpid( $task_pids[$i], $status, WUNTRACED );
}

?>

上面的脚本打开60个PHP进程并在shell_exec中运行上面的命令。 这只是我正在做的一个示例脚本。

上面的脚本有时会卡住并且永远不会结束,有时它会成功完成。 [但大部分时间它都停滞不前]

你知道为什么会这样吗?那有什么解决方案吗? 如果我在/ usr / bin / timeout命令中使用超时,它会成功结束,但我想获取ffmpeg输出。

谢谢

1 个答案:

答案 0 :(得分:0)

将pcntl_wait循环替换为:

while(pcntl_waitpid( 0, $status)!=-1);