您是否知道Windows中是否有办法计算通过PHP运行的进程数量?
非常感谢任何帮助。
答案 0 :(得分:2)
是的,通过简单的Google搜索,您可以使用此功能:
http://php.net/manual/en/function.win32-ps-list-procs.php
$processList = win32_ps_list_procs();
if($processList === false) {
// Do error handling here. We use die() for example
die('Failed to obtain the list of processes');
}
$count = count($processList);