php计算函数执行时间的方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-17 14:51:40 浏览: 评论:0
这篇文章主要介绍了php计算函数执行时间的方法,以md5函数加密运行时间为例分析了php计算函数运行时间的技巧,需要的朋友可以参考下.
本文实例讲述了php计算函数执行时间的方法,分享给大家供大家参考,具体如下:
我们可以通过在程序的前后分别记录开始和结束时间,两个时间差就是程序的执行时间。
- <?php
- $long_str = "this is a test to see how much time md5 function takes to execute over this string";
- // start timing from here
- $start = microtime(true);
- // function to test
- $md5 = md5($long_str);
- $elapsed = microtime(true) - $start;
- echo "That took $elapsed seconds.\n";
- ?>
运行结果如下:
That took 7.1525573730469E-6 seconds.
php 计算函数执行时间的方法及获得微妙的方法
- // 获得微妙方法
- function getMillisecond()
- {
- list($s1, $s2) = explode(' ', microtime());
- return (float)sprintf('%.0f', (floatval($s1) + floatval($s2)) * 1000);
- }
原理:分别记录函数开始时间和结束时间,然后时间差就是函数执行的时间
- <?php
- $start_time = microtime(true);
- for($i=1;$i<=1000;$i++){
- echo $i.'<br>';
- }
- $end_time = microtime(true);
- echo '循环执行时间为:'.($end_time-$start_time).' s';
- ?>
Tags: php函数执行时间
- 上一篇:php实现兼容2038年后Unix时间戳转换函数
- 下一篇:php内嵌函数用法实例
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)