Answers for "php calculate execution time in seconds"

PHP
1

measure php execution time

$start = microtime(true);
while (...) {

}
$time_elapsed_secs = microtime(true) - $start;
Posted by: Guest on May-13-2020

Code answers related to "php calculate execution time in seconds"

Browse Popular Code Answers by Language