페이지 실행 시간 소모


  
  
  
  
  1. function microtime_float() 
  2.     // microtime   
  3.     $_mtime = explode(" ", microtime()); 
  4.     //  
  5.     return $_mtime[1] + $_mtime[0]; 
  6.     /* 
  7.      *   
  8.      list($usec, $sec) = explode(" ", microtime()); 
  9.      return $usec + $sec; 
  10.      *  
  11.      * */ 
  12.  
  13. //  
  14. $time_start = microtime_float(); 
  15. //   
  16. usleep(100); 
  17.   
  18. //  
  19. $time_end = microtime_float(); 
  20.   
  21. // = -  
  22. $time = $time_end - $time_start
  23.   
  24. echo $time ; 

좋은 웹페이지 즐겨찾기