php测试程序运行时间和占用内存情况

php测试程序运行时间和占用内存情况:

$HeaderTime = microtime(true);//参数true表示返回浮点数值
/**
*CODE
*/
printf(" total run: %.2f s<br>".
"memory usage: %.2f M<br> ",
microtime(true)-$HeaderTime,
memory_get_usage() / 1024 / 1024 );
上一篇:UVa 101 The Blocks Problem Vector基本操作


下一篇:使用jconsole分析内存情况-JVM