aboutsummaryrefslogtreecommitdiffhomepage
path: root/misc/format_datetime.php
blob: 1a4db526a2c8a4a5706e441e3689eef13ac846c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

function format_datetime(
    DateTimeInterface $dt,
    DateTimeZone|IntlTimeZone|string|null $tz = null
): string {
    static $formatter = new IntlDateFormatter(
    get_ui_language(),
    IntlDateFormatter::RELATIVE_MEDIUM,
    IntlDateFormatter::SHORT
    );
    $formatter->setTimeZone($tz ?? $dt->getTimezone());
    return $formatter->format($dt);
}