Podemos saber el tiempo exacto que tarda en ejecutarse un script de PHP gracias a la función microtime.
Justo antes del inicio del script añadiremos esta línea:
$start = microtime(true);
Y después del script añadiremos esta otra:
$time_elapsed= microtime(true) - $start;
Así tendremos el tiempo de ejecución del script (en segundos) en la variable $time_elapsed.