Skip to content

Instantly share code, notes, and snippets.

@Rachind
Last active February 10, 2019 20:05
Show Gist options
  • Save Rachind/a5fd82bd27f4054bac66d032a9f11cce to your computer and use it in GitHub Desktop.
Save Rachind/a5fd82bd27f4054bac66d032a9f11cce to your computer and use it in GitHub Desktop.
Snippet ruDate
<?php
//20 февраля 2014 г.
//date_format
$mounth = array('января', 'февраля', 'марта', 'апреля', 'мая', 'июня', 'июля', 'августа', 'сентября', 'октября', 'ноября', 'декабря');
return date("d", $input).' '.$mounth[date("n", $input)-1].' '.date("Y", $input).' г.';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment