if your are a PHP dev and you execute php scripts to test time taken, the following code can help you
Hope this will be useful in your application
Ref
microtime — Return current Unix timestamp with microseconds
[php] //Start time $time_start = microtime(true); // Sleep for 1 sec sleep(1); //Execution of your script //End time $time_end = microtime(true); //Time taken $time = $time_end - $time_start; echo "Time taken is $time seconds\n"; [/php]
Hope this will be useful in your application
Ref