标签: php windows spawn
当我使用exec或shell_exec时,他们会等到衍生的应用程序退出(在Windows中)。但我需要跑去忘记(并退出)。怎么样?
exec
shell_exec
我尝试了start DOS / Windows命令,但还没有找到解决方案。
start
答案 0 :(得分:1)
$shell = new COM("WScript.Shell"); $shell->run($command, 0, false);