Quick Search:
 
 PHP Code: Page creation time #2 Jump to:  
Category: >> PHP Code >> Page creation time #2  

<< lastnext >>

Snippet Name: Page creation time #2

Description: Just paste it into the header of the PHP file you wish to show it on, and it will display you how long it took to load that page.

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 01st, 2009

<? php
 
FUNCTION getmicrotime(){ 
LIST($usec, $sec) = EXPLODE(" ",MICROTIME()); 
RETURN ((float)$usec + (float)$sec); 
} 
$time_start = getmicrotime(); 
FOR ($i=0; $i <1000; $i++){ 
} 
$time_end = getmicrotime(); 
$time = $time_end - $time_start; 
$time = ROUND($time,4); 
ECHO "This page took $time seconds to load."; 
 
?> 


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org