<?php
    
/**
    * o------------------------------------------------------------------------------o
    * | This package is licensed under the Phpguru license 2008. A quick summary is  |
    * | that the code is free to use for non-commercial purposes. For commercial     |
    * | purposes of any kind there is a small license fee to pay. You can read more  |
    * | at:                                                                          |
    * |                  http://www.phpguru.org/static/license.html                  |
    * o------------------------------------------------------------------------------o
    *
    * © Copyright 2008 Richard Heyes
    */

    
require_once('Timer.php');
    
    
$timer = new Timer();
    
    
$timer->Interval('A label');
    
sleep(mt_rand(03));
    
$timer->Interval('Another label');
    
sleep(mt_rand(03));
    
$timer->End();
?>