Просмотр поста

.
Максим
В стельку трезвый

Elfitaja, можно сделать функцию или просто обработать переменную.

function month($str)
		{
		$str = str_replace('1', 'Января', $str);
		$str = str_replace('2', 'Февраля', $str);
		$str = str_replace('3', 'Марта', $str);
		$str = str_replace('4', 'Апреля', $str);
		$str = str_replace('5', 'Мая', $str);
		$str = str_replace('6', 'Июня', $str);
		$str = str_replace('7', 'Июля', $str);
		$str = str_replace('8', 'Августа', $str);
		$str = str_replace('9', 'Сентября', $str);
		$str = str_replace('10', 'Октября', $str);
		$str = str_replace('11', 'Ноября', $str);
		$str = str_replace('12', 'Декабря', $str);
		return $str;
			}