페이지 실행 시간 소모
2628 단어 페이지 실행 시간 소모
- function microtime_float()
- {
- // microtime
- $_mtime = explode(" ", microtime());
- //
- return $_mtime[1] + $_mtime[0];
- /*
- *
- list($usec, $sec) = explode(" ", microtime());
- return $usec + $sec;
- *
- * */
-
- }
- //
- $time_start = microtime_float();
- //
- usleep(100);
-
- //
- $time_end = microtime_float();
-
- // = -
- $time = $time_end - $time_start;
-
- echo $time ;