Page 1 of 1

How to get page load time in php

Posted: Fri Jul 15, 2011 6:28 pm
by Saman
Outputs the time in seconds that it takes for a PHP page to load.

Code: Select all

<?php 

// Insert this block of code at the very top of your page: 

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

// Place this part at the very end of your page 

$time = microtime(); 
$time = explode(" ", $time); 
$time = $time[1] + $time[0]; 
$finish = $time; 
$totaltime = ($finish - $start); 
printf ("This page took %f seconds to load.", $totaltime); 

?>