Quick Search:
 
 PHP Code: Measure script run time Jump to:  
Category: >> PHP Code >> Measure script run time  

<< lastnext >>

Snippet Name: Measure script run time

Description: Measure the run time of a function or script process.

Also see:
» Saving Remote Images With PHP
» Include All Files In A Directory
» More File Type Detection in PHP
» Get Current Page URL
» Get Current Directory Name
» Write to File example
» Check if a file exists
» Export table to Excel or MS Word file
» Count lines in file
» Copy File From Server
» Truncate URLs for clean appearance.
» Calculate File Size In Directory

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 16th, 2009

<?PHP
 
// mark the start time
$start_time = MICROTIME(TRUE);
 
// ...function or processing code...
 
// mark the stop time
$stop_time = MICROTIME(TRUE);
 
// get the difference in seconds
$time = $stop_time - $start_time;
 
PRINT "Elapsed time was $time seconds.";
 
?> 


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