Files
sportpressa_backend/template-parts/current-datetime.php
2026-01-08 20:53:00 +03:00

29 lines
1.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- Строка с датой и временем -->
<div class="header-top-bar">
<div class="header-top-content">
<span id="current-datetime">
<?php
// Массивы для русских названий
$months_ru = [
1 => 'января', 2 => 'февраля', 3 => 'марта', 4 => 'апреля',
5 => 'мая', 6 => 'июня', 7 => 'июля', 8 => 'августа',
9 => 'сентября', 10 => 'октября', 11 => 'ноября', 12 => 'декабря'
];
$days_ru = [
0 => 'Воскресенье', 1 => 'Понедельник', 2 => 'Вторник',
3 => 'Среда', 4 => 'Четверг', 5 => 'Пятница', 6 => 'Суббота'
];
$day = date('j');
$month = $months_ru[date('n')];
$year = date('Y');
$day_name = $days_ru[date('w')];
$time = date('H:i');
echo "$day $month $year, $day_name | Московское время: $time";
?>
</span>
</div>
</div>