Created
August 29, 2015 17:43
-
-
Save nikartx/c02250b64ba1adaee785 to your computer and use it in GitHub Desktop.
Print by php in the russian locale - date, month, week day and time
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Вывод даты на русском | |
$monthes = array( | |
1 => 'Января', 2 => 'Февраля', 3 => 'Марта', 4 => 'Апреля', | |
5 => 'Мая', 6 => 'Июня', 7 => 'Июля', 8 => 'Августа', | |
9 => 'Сентября', 10 => 'Октября', 11 => 'Ноября', 12 => 'Декабря' | |
); | |
echo(date('d ') . $monthes[(date('n'))] . date(' Y, H:i')); | |
// Вывод дня недели | |
echo('<br />'); | |
$days = array( | |
'Воскресенье', 'Понедельник', 'Вторник', 'Среда', | |
'Четверг', 'Пятница', 'Суббота' | |
); | |
echo($days[(date('w'))] . date(', H:i')); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment