Skip to content

Instantly share code, notes, and snippets.

@fomigo
Created October 24, 2014 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fomigo/31c77e5236516859a7ab to your computer and use it in GitHub Desktop.
Save fomigo/31c77e5236516859a7ab to your computer and use it in GitHub Desktop.
<?php
$month_arr = array('01' => 'Янв',
'02' => 'Фев',
'03' => 'Мар',
'04' => 'Апр',
'05' => 'Мая',
'06' => 'Июн',
'07' => 'Июл',
'08' => 'Авг',
'09' => 'Сен',
'10' => 'Окт',
'11' => 'Ноя',
'12' => 'Дек'
);
$time = strtotime($input);
$month = strftime('%m', $time);
$day = strftime('%d', $time);
$year = strftime('%Y', $time);
return $day . $month_arr[$month] . $year;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment