计算页面执行时间

计算页面执行时间,在PHP网页的开头加入以下代码:

  1. <?
  2. $time_start = getmicrotime();
  3. function getmicrotime()
  4. {
  5. list($usec, $sec) = explode(" ",microtime());
  6. return ((float)$usec + (float)$sec);
  7. }
  8. ?>

然后到最后加入以下代码

  1. <?
  2. $time_end = getmicrotime();
  3. printf ("[页面执行时间: %.2f毫秒] ",($time_end - $time_start)*1000);
  4. ?>