原理:分别记录函数开始时间和结束时间,然后时间差就是函数执行的时间
1 <?php 2 //以md5()方法为例 3 $start = microtime(true); 4 5 $str = md5("this is test"); 6 7 $spend_time = microtime(true)-$start; 8 9 echo ‘md5()方法执行时间为:‘.$spand_time.‘秒‘ 10 ?>
时间: 2024-10-13 19:13:55
原理:分别记录函数开始时间和结束时间,然后时间差就是函数执行的时间
1 <?php 2 //以md5()方法为例 3 $start = microtime(true); 4 5 $str = md5("this is test"); 6 7 $spend_time = microtime(true)-$start; 8 9 echo ‘md5()方法执行时间为:‘.$spand_time.‘秒‘ 10 ?>