php计算代码运行时间与内存使用的代码

发布时间:2020-01-01编辑:脚本学堂
php计算代码运行时间和使用内存,有需要的朋友,可以参考下。

php计算代码运行时间和使用内存。
 

复制代码 代码示例:

<?php
//开始计时
$HeaderTime = microtime(true);//参数true表示返回浮点数

//代码
//...

printf(" total run: %.2f s<br>".
"memory usage: %.2f M<br> ",
microtime(true)-$HeaderTime,
memory_get_usage() / 1024 / 1024 );
?>

输出结果:
total runtime: 1.47 s
memory usage: 77.09 M