Php TimeHelper class
Php class helper for formatting datetime
Download file and install
<?php
include_once('TimeHelper.php');
?>
Or use composer
{
"repositories": [
...
{
"type": "git",
"url": "https://github.com/korytoff/PHP-TimeHelper.git"
}
],
"require": {
...
"korytoff/helpers/timehelper": "*"
},
}
$ php composer.phar update
Use
<?php
echo TimeHelper::create('2014-11-07 22:12:00')->today(); // Сегодня, Завтра, Вчера или 14 сентября 2015 г.
?>