Calculate the time needed to run a certain function

I found this answer by 'bisko' in this thread.

$start = microtime(true);

for (...) { .... }

$end = microtime(true);

echo ($end - $start).' seconds';

The for-loop can be replaced by whatever you want to time.


The easy way:

$time = microtime(true); // time in Microseconds

// Your code here

echo (microtime(true) - $time) . ' elapsed';

The hard(er) way: Use a code profiler to see exactly how much time your methods will take.


You can run the same line 10,000 times (or more) in your script, and use microtime(true) to tell the time it took.

Reference: microtime()