<?php
/**
* o------------------------------------------------------------------------------o
* | This package is dual licensed as GPL and a commercial license.               |
* | If you use the code commercially (or if you don't want to be restricted by   |
* | the GPL license), you will need the commercial license. It's only £49 (GBP - |
* | roughly $98 depending on the exchange rate) and helps me out a lot. Thanks.  |
* o------------------------------------------------------------------------------o
*
* © Copyright Richard Heyes
*/

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