我在Windows apache服务器的后台启动了一个进程。
index.php跟随此:
<?php
$cmd = "C:/xampp/php/php.exe -f test.php";
pclose(popen("start /B ". $cmd, "r"));
echo "OK";
?>
test.php跟随此:
<?php
sleep(5);
file_put_contents("1.txt", date("Y-m-d H:i:s"));
?>
那时,我想得到php -f test.php
的pid。
当我启动index.php时,我可以在php.exe
命令行的输出中看到新的tasklist
进程。
我怎样才能获得这个后台流程的pid。
感谢。
答案 0 :(得分:2)
这将在使用ProcessID
执行任务后输出wmic
。然后,您可以将其存储在会话或cookie中以在页面之间传递。
$cmd = 'wmic process call create "C:/xampp/php/php.exe -f /path/to/htdocs/test.php" | find "ProcessId"';
$handle = popen("start /B ". $cmd, "r");
$read = fread($handle, 200); //Read the output
echo $read; //Store the info
pclose($handle); //Close
<强>输出强>
ProcessId = 1000