mezon / date-time-utils
Small date/time utilities
Installs: 3 051
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 0
Open Issues: 0
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