string microtime ( void )

  返回格式为“msec sec”的字符串,其中 sec 是当前的 Unix 时间戳,msec 是微秒部分。本函数仅在支持 gettimeofday() 系统调用的操作系统下可用。   字符串的两部分都是以秒为单位返回的。

 

  1. <?php 
  2. function getmicrotime(){ 
  3.     list($usec$sec) = explode(" ",microtime()); 
  4.     return ((float)$usec + (float)$sec); 
  5. $time_start = getmicrotime(); 
  6. for ($i=0; $i < 1000; $i++){ 
  7.     //do nothing, 1000 times 
  8. $time_end = getmicrotime(); 
  9. $time = $time_end - $time_start
  10. echo "Did nothing in $time seconds"
  11. ?>