Showing posts with label Php page load time. Show all posts
Showing posts with label Php page load time. Show all posts

Thursday, October 27, 2016

Measuring PHP Page Load Time

$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$start = $time;


$time = microtime();
$time = explode(' ', $time);
$time = $time[1] + $time[0];
$finish = $time;
$total_time = round(($finish - $start), 4);
echo 'Page generated in '.$total_time.' seconds.';



Ref: http://www.coding101.in/2016/10/measuring-php-page-load-time.html