Skip to content

Instantly share code, notes, and snippets.

@morozVA
Created January 3, 2018 09:36
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 morozVA/906c1ae3feaad4afbf05e6cf0a2f0a57 to your computer and use it in GitHub Desktop.
Save morozVA/906c1ae3feaad4afbf05e6cf0a2f0a57 to your computer and use it in GitHub Desktop.
evo convertDate on russian
[!convertDate? &MyDate=`[*createdon*]`!]
<?php
$MyDate= (isset($MyDate)) ? $MyDate: $modx -> documentObject['MyDate'];
$type= (isset($type)) ? $type: $modx -> documentObject['type'];
$monthes = array('','января','февраля','марта','апреля','мая','июня','июля','августа','сентября','октября','ноября','декабря');
$day = date("j" ,$MyDate);
$month = $monthes[date("n",$MyDate)];
$year = date("Y",$MyDate);
echo $day.' '.$month.' '.$year.' года';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment