Monday, December 5, 2011

Getting the Time a PHP Script Takes to Execute

SkyHi @ Monday, December 05, 2011
If your working with large resource intensive PHP scripts, or are simply looking to refine and optimize an existing bit of code, one of the steps you might take is to look at how long your PHP code is taking to run. We can do this within the PHP code itself by analyzing the time the script is kicked off and comparing it to the time the script completes.
I’ve included a simple example of this below:

<?php
// Place this at the very top of script
$start = microtime(TRUE);

//
// The body of script goes here with lots of wonderful code.
//

// Place this at the very bottom of script
$finish = microtime(TRUE);

// Subtract the start time from the end time to get our difference in seconds
$totaltime = $finish - $start;

echo "This script took ".$totaltime." seconds to run";

The code above uses the function microtime(). This returns the amount of time, including microseconds, since the unix epoch. By adding ‘TRUE’ as a parameter we get the number returned in seconds to the nearest microsecond.


REFERENCES
http://biostall.com/getting-the-time-a-php-script-takes-to-execute