Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 PHP 文件,它使用 shell/shell_exec/passthru/system 函数之一触发进程。我需要能够找到该进程是否仍在运行。
有什么办法可以用常规的 PHP 工具来做到这一点?(我的意思是没有可用的 fork/posix 扩展)
使用proc_open()+ proc_get_status()+ proc_close()。
proc_open()
proc_get_status()
proc_close()