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 Abdul Kader  >  GMT Converter  >  example.php  >  Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example on usage
Class: GMT Converter
Convert time between zones defined in a database
Author: By
Last change:
Date: 2009-07-29 11:00
Size: 740 bytes
 

Contents

Class file image Download
<?php
    
include('gmt.class.php');
    
$gmt = new gmt();

    echo 
'<h3>Your server gmt is : '.date('P').'('.date('e').')</h3>';
    echo 
'<h3>Your server time is : '.date('Y-m-d H:i:s').'</h3>';

    
$date '2009-06-20 05:00:00';

    
//EX 1:
    
echo '<p>GMT according to your server : '.$gmt->getByGMT().'</p>';

    
//EX 2:
    
$gmt->setZoneId(3);
    
$gmt->setDateToConvert($date);
    echo 
'<p>GMT Minus 10 hour as on '.$date.' : '.$gmt->getByGMT().'</p>';

    
//Reset zone and date
    
$gmt->resetZoneId();
    
$gmt->resetDateToConvert();

    
//EX 1:
    
echo '<p>GMT according to your server : '.$gmt->getByGMT().'</p>';

    
//EX 3:
    
$gmt->setDateToConvert($date);
    echo 
'<p>GMT as on '.$date.' according to your server : '.$gmt->getByGMT().'</p>';
?>