PHP Classes

File: example.php

Recommend this page to a friend!
  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: 20 years ago
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();
       
?>