The tests weren't complete nor were they being used so I dropped them. Since this branch is still actively being maintained as it's the PHP 5.3 compatible stuff I figured I should update the headers to have the current year and explicitly show that it's PHP 5.3+ and not just PHP 5.
41 lines
828 B
PHP
41 lines
828 B
PHP
<?php
|
|
|
|
/**
|
|
* Date Utility Collection
|
|
*
|
|
* PHP version 5.3+
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistribution of these files must retain the above copyright notice.
|
|
*
|
|
* @author Joshua Sherman <josh@gravityblvd.com>
|
|
* @copyright Copyright 2007-2014, Joshua Sherman
|
|
* @license http://www.opensource.org/licenses/mit-license.html
|
|
* @package PICKLES
|
|
* @link https://github.com/joshtronic/pickles
|
|
*/
|
|
|
|
/**
|
|
* Date Class
|
|
*
|
|
* Just a simple collection of static functions to accomplish some of the more
|
|
* redundant date related manipulation.
|
|
*/
|
|
class Date
|
|
{
|
|
/**
|
|
* Age
|
|
*
|
|
* Calculates age based on the passed date.
|
|
*
|
|
* @static
|
|
* @param string $date birth / inception date
|
|
* @return integer $age number of years old
|
|
*/
|
|
public static function age($date)
|
|
{
|
|
return Time::age($date);
|
|
}
|
|
}
|
|
|
|
?>
|