mezon/date-time-utils

Small date/time utilities

1.0.5 2021-05-01 14:27 UTC

This package is auto-updated.

Last update: 2024-04-29 04:33:50 UTC


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