14 lines
315 B
PHP
14 lines
315 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
function e(?string $value): string {
|
|
return htmlspecialchars((string)($value ?? ''), ENT_QUOTES, 'UTF-8');
|
|
}
|
|
|
|
function format_date(?string $value): string {
|
|
if (!$value) return '-';
|
|
$ts = strtotime($value);
|
|
if ($ts === false) return e($value);
|
|
return date('d M Y', $ts);
|
|
}
|