Answers for "php check how long a function took to exexute"

PHP
0

php check how long a function took to exexute

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

}
$time_elapsed_secs = microtime(true) - $start;
Posted by: Guest on September-08-2021

Code answers related to "php check how long a function took to exexute"

Browse Popular Code Answers by Language