我正在使用一个无限循环的java文件执行javaw:
$descriptorspec = array(
0 => array("pipe", "r"), // stdin is a pipe that the child will read from
1 => array("pipe", "w"), // stdout is a pipe that the child will write to
2 => array("pipe", "w") // stderr is a file to write to
);
// e.x. $javaCmd = "java -cp "../Fully Diversified Sequences of Sets" SuperEasyProblemSolution2 > /dev/null 2>&1 < h.in"
$proc = proc_open($javaCmd, $descriptorspec, $pipes);//, $cwd, $env);
stream_set_blocking($pipes[0], 0) ;
$status = proc_get_status($proc);
var_dump($status);
$timeOut = 5;
$currentSecond = 0;
while( $currentSecond < $timeOut ) {
echo '<br/>';
sleep(1);
$currentSecond = $currentSecond +1;
if( ! $status["running"] )
{
echo 'process exited before timing out'; // Process must have exited, success!
return;
}
$status = proc_get_status($proc);
var_dump($status);
} // end while
if($currentSecond == $timeOut)
{
// kill KILL KILL!
exec("taskkill /PID ".$status['pid']);
}
在第一次调用时proc_get_status
,running
属性返回true。在第二次调用(一秒后)到 时proc_get_status
,running
返回false。但是,应用程序 javaw.exe仍在运行(我调用proc_get_status
了一个最终会超时的 while 循环。)
我的目标是在超时后终止程序。在这里看到一个类似的问题。我在 Win7 64 位 PHP 5.3 上运行
Var dump on $status
:(注意;我尝试申请stream_set_blocking($pipes[0], 0) ;
,同样的问题)
在进入超时循环之前:
array(8) {
["command"]=> string(157) "java -cp "../Fully Diversified Sequences of Sets" SuperEasyProblemSolution2 /dev/null 2>&1 < h.in"
["pid"]=> int(3264)
["running"]=> bool(true)
["signaled"]=> bool(false)
["stopped"]=> bool(false)
["exitcode"]=> int(-1)
["termsig"]=> int(0)
["stopsig"]=> int(0)
}
在第一次迭代/睡眠(1)之后:
array(8) {
["command"]=> string(157) "java -cp "../Fully Diversified Sequences of Sets" SuperEasyProblemSolution2 /dev/null 2>&1 < h.in"
["pid"]=> int(3264)
["running"]=> bool(false)
["signaled"]=> bool(false)
["stopped"]=> bool(false)
["exitcode"]=> int(1)
["termsig"]=> int(0)
["stopsig"]=> int(0)
}
process exited before timing out
经过测试,$status['pid'] 似乎与 Windows 资源监视器下 javaw.exe 的 pid 不同。