标签: php system
我想使用system("firefox &");启动一个使用PHP的firefox实例,但在我关闭firefox之前,system()函数不会返回。我找到的唯一选择是之前有一个已经运行的firefox实例。 那么,如何在不等待它们关闭的情况下用PHP启动程序呢?
system("firefox &");
system()
PS:exec()和passthru()似乎也是这样。
exec()
passthru()
感谢