程序员人生 网站导航

计算一个程序的执行时间的函数

栏目:php教程时间:2014-04-01 11:08:20
计算一个程序的执行时间的函数
  1. function getmicrotime(){ 
  2. list($usec$sec) = explode(" ",microtime()); 
  3. return ((float)$usec (float)$sec); 
  4.  
  5. $time_start = getmicrotime();//开始计时, 放在程序头 
  6.  
  7. for ($i=0; $i < 1000; $i ){ 
  8. //do nothing, 1000 times 
  9.  
  10. $time_end = getmicrotime();//结束计时, 放在尾部 
  11. $time = $time_end - $time_start
  12.  
  13. echo "Did nothing in $time seconds"
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐