当前位置:Gxlcms > PHP教程 > php计算代码运行时间与内存使用的代码

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

时间:2021-07-01 10:21:17 帮助过:20人阅读

  1. //开始计时

  2. $HeaderTime = microtime(true);//参数true表示返回浮点数值

  3. //代码

  4. //...

  5. printf(" total run: %.2f s
    ".

  6. "memory usage: %.2f M
    ",
  7. microtime(true)-$HeaderTime,
  8. memory_get_usage() / 1024 / 1024 );
  9. ?>

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

人气教程排行