我在 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"));
?>
当时,我想得到 pid which php -f test.php
。当我启动 index.php 时,我可以在命令行的输出中看到新php.exe
进程。tasklist
我怎样才能得到这个后台进程的pid。
谢谢。