windows上的php memory_get_usage

时间:2012-01-04 16:10:37

标签: php

有没有办法让memory_get_usage()memory_get_peak_usage()在Windows上运行? (php 5.2版)我得到一个未定义的函数致命错误。

1 个答案:

答案 0 :(得分:1)

查看explanation at ibm.com about PHP and memory。还有一个解释如何在Windows上使用shell命令接收内存信息:

$output = array();
exec('tasklist /FI "PID eq '.getmypid().'" /FO LIST', $output);
echo preg_replace( '/[^0-9]/', '', $output[5] ) * 1024;