Changeset 30

Show
Ignore:
Timestamp:
04/23/06 15:22:35 (3 years ago)
Author:
dclarke
Message:

added timer

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/insertGalleryHere.php

    r28 r30  
    1515        script all other files will just die. 
    1616*/ 
     17/* Timer Function */ 
     18$timeparts = explode(' ',microtime()); 
     19$starttime = $timeparts[1].substr($timeparts[0],1); 
    1720 
    1821/* Required sources */ 
     
    123126        $ighOutput = $body; 
    124127} 
     128/* Timer Finish */ 
     129$timeparts = explode(" ",microtime()); 
     130$endtime = $timeparts[1].substr($timeparts[0],1); 
     131 
     132$output_time = "Time for this page: ". number_format(bcsub($endtime,$starttime,6),3) . " s "; 
     133$ighOutput .= $output_time; 
    125134 
    126135/* Spew! Thats it. */