Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Günni  >  Time to generate a page  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: this is the example to use the timeclass
Class: Time to generate a page
Class to measure the time elapsed between moments
Author: By
Last change:
Date: 2003-05-12 03:52
Size: 313 bytes
 

Contents

Class file image Download
<?
    
// Including the Class File
    
include("ladezeitclass.php");
    
    
// Make a new instanz of the Class
    
$time = new ladezeit();
    
    
// start the time stopping
    
$time->start();
    
    
// end the time stopping
    
$time->ende();
    
    
// give out the differenz time between start and end
    
$time->ausgabe();
        
?>