39065-vm/includes/helpers.php
2026-03-09 14:12:06 +00:00

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);
}