Browse Source

new rules for date

git-svn-id: svn+ssh://code.netmonsters.ru/svn/majestic/trunk@65 4cb57b5f-5bbd-dd11-951b-001d605cbbc5
master
ejikharev 16 years ago
parent
commit
7303dd5f2e
  1. 10
      classes/Format.class.php

10
classes/Format.class.php

@ -96,6 +96,16 @@ class Format
return self::$cache_time[$timestamp];
}
static public function int2rusDate($timestamp = 0, $hours = false)
{
$month = array("января", "февраля", "марта", "апреля", "мая", "июня", "июля", "августа", "сентября", "октября", "ноября", "декабря");
if(!isset(self::$cache_time[$timestamp])){
self::$cache_time[$timestamp] = ($hours) ? date("H:i d", $timestamp) . " " . $month[date("m", $timestamp) - 1] . " " .date("Y", $timestamp) : date("d", $timestamp) . " " . $month[date("m", $timestamp) - 1] . " " .date("Y", $timestamp);
}
return self::$cache_time[$timestamp];
}
/**
* Установка смещения для getTime
*

Loading…
Cancel
Save