首页 > 后端开发 > php教程 > 计算php函数的执行时间

计算php函数的执行时间

WBOY
发布: 2016-07-25 08:45:49
原创
1105 人浏览过
  1. $long_str = "this is a test to see how much time md5 function takes to execute over this string";
  2. // start timing from here
  3. $start = microtime(true);
  4. // function to test
  5. $md5 = md5($long_str);
  6. $elapsed = microtime(true) - $start;
  7. echo "That took $elapsed seconds.\n";
  8. ?>
复制代码

执行时间, php


来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板