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

计算php函数的执行时间

WBOY
WBOY原创
2016-07-25 08:45:491120浏览
  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


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn