A simple way to find out execution time of php script without lots of calculation is tracks the wallclock time. Compare to tracking CPU time, it also include time that PHP is sat waiting for external resources such as disks or databases, which is not used for max_execution_time.
$time_start = microtime(true); //scripts, db querys etc goes here echo 'Execution time load report package: ', $execution_time);
Output: Execution time get user: 0.00023317337036133
What do you think?