Answers for "how to measure execution time in php"

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 "how to measure execution time in php"

Browse Popular Code Answers by Language