Skip to content

Instantly share code, notes, and snippets.

@OlegShchavelev
Last active December 2, 2019 13:15
Show Gist options
  • Save OlegShchavelev/9f21a018f18071b0629e2eb9edad00f7 to your computer and use it in GitHub Desktop.
Save OlegShchavelev/9f21a018f18071b0629e2eb9edad00f7 to your computer and use it in GitHub Desktop.
Выводим дату на Modx с русским названием месяца
{$publishedon | date : "d M Y" | rus_months}
<?php
$months = array(
'Jan' => 'января',
'Feb' => 'февраля',
'Mar' => 'марта',
'Apr' => 'апреля',
'May' => 'мая',
'Jun' => 'июня',
'Jul' => 'июля',
'Aug' => 'августа',
'Sep' => 'сентября',
'Oct' => 'октября',
'Nov' => 'ноября',
'Dec' => 'декабря',
);
return str_replace(array_keys($months), array_values($months), $input);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment