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

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

  1. function getmicrotime(){
  2. list($usec, $sec) = explode(" ",microtime());
  3. return ((float)$usec (float)$sec);
  4. }
  5. $time_start = getmicrotime();//开始计时, 放在程序头
  6. for ($i=0; $i < 1000; $i ){
  7. //do nothing, 1000 times
  8. }
  9. $time_end = getmicrotime();//结束计时, 放在尾部
  10. $time = $time_end - $time_start;
  11. echo "Did nothing in $time seconds";