mezon / date-time-utils
Small date/time utilities
1.0.5
2021-05-01 14:27 UTC
Requires
- php: >=7.2.0
Requires (Dev)
- phpunit/phpunit: ^8.5
README
Installation
Just print
composer require mezon/date-time-utils
Locale setup
You can specify necessary locale by setting up the DateTimeUtils::$locale variable. For example:
DateTimeUtils::$locale = 'en';
Methods
Method returns true if the passed date is today
DateTimeUtils::isToday(string $date):bool
Method returns true if the passed date was yesterday
DateTimeUtils::isYesterday(string $date):bool
Method returns day and literal representation of month from the date. For example the string "1 of july" will be returned for the date '2020-07-01'
DateTimeUtils::dayMonth(string $date): string