通过PHP计算在Windows上运行的进程数

时间:2015-04-05 06:25:03

标签: php

您是否知道Windows中是否有办法计算通过PHP运行的进程数量?

非常感谢任何帮助。

1 个答案:

答案 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);