korytoff/timehelper

There is no license information available for the latest version (1.3) of this package.

Php class helper for formatting datetime

1.3 2015-12-21 13:59 UTC

This package is not auto-updated.

Last update: 2024-06-08 17:10:11 UTC


README

Code Climate

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 г.
?>