web-utils/modules/date/date.php
2021-08-08 19:23:49 +02:00

10 lines
174 B
PHP

<?php
$format = $_GET['format'] ?? 'full';
date_default_timezone_set($_GET['timezone'] ?? 'UTC');
echo date(match ($format) {
'full' => 'Y-m-d H:i:s',
'unix' => 'U'
});