Skip to content

Instantly share code, notes, and snippets.

@nikartm
Created August 29, 2015 17:43
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikartm/c02250b64ba1adaee785 to your computer and use it in GitHub Desktop.
Save nikartm/c02250b64ba1adaee785 to your computer and use it in GitHub Desktop.
Print by php in the russian locale - date, month, week day and time
<?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