Login   Register  
PHP Classes
elePHPant
Icontem

File: date_time_helper.test.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Morshed Alam  >  Time Difference with Unit Test  >  date_time_helper.test.php  >  Download  
File: date_time_helper.test.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Time Difference with Unit Test
Get the difference between times in English
Author: By
Last change:
Date: 2012-11-22 10:00
Size: 880 bytes
 

Contents

Class file image Download
<?php

/**
 * Example of uses
 *
 * @package DateTimeHelper
 * @author Morshed Alam <morshed201@gmail.com>
 * @link http://github.com/morshedalam/date_time_helper/
 * @website http://morshed-alam.com
 */

require 'date_time_helper.php';
$dHelper = new DateTimeHelper();

echo 
$dHelper->timeDiffAsWords('2011-03-01 10:00:10''2011-03-01 10:00:01') . "<br />";
echo 
$dHelper->timeDiffAsWords('2011-03-01 10:00:10''2011-03-01 10:26:10') . "<br />";
echo 
$dHelper->timeDiffAsWords('2011-03-01 10:00:10''2011-03-01 11:00:10') . "<br />";
echo 
$dHelper->timeDiffAsWords('2011-03-01 10:00:10''2011-03-02 10:00:10') . "<br />";
echo 
$dHelper->timeDiffAsWords('2011-03-01 10:00:10') . "<br />";
echo 
$dHelper->timeDiffAsWords('2010-03-01') . "<br />";
echo 
$dHelper->timeDiffAsWords() . "<br />";

print_r($dHelper->timeDifference('2011-03-01 10:00:10''2011-03-02 10:00:10'));
?>