コード例 #1
0
ファイル: CDateHelper.php プロジェクト: Allgood07/diplom
 public static function getDateWithStrMonth($unix_timestamp, $timezoneConvertStrategy = null)
 {
     $unix_timestamp = self::timezoneConverter($unix_timestamp, $timezoneConvertStrategy);
     return date('d', $unix_timestamp) . ' ' . CDateHelper::getMonthName($unix_timestamp, true) . ' ' . date('Y', $unix_timestamp);
 }