我尝试做一个php脚本来自动打开和关闭firefox(24.0版)。代码是:
<?php
//opening firefox
exec('"C:\Program Files\Mozilla Firefox\firefox.exe"');
//Waiting a moment to let firefox charging
sleep(20);
//Closing firefox
exec("TASKKILL /IM firefox.exe /F");
?>
但是我有一个问题,导航器成功打开,但它仍然打开很长时间,直到我手动关闭它,然后它等待 20 秒并告诉我没有要杀死的进程 firefox。
请我尽快需要你的帮助。
你好。