PHP Verifique quanto tempo uma função levou para o Exexute

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

}
$time_elapsed_secs = microtime(true) - $start;
Fragile Fish