當前位置: 首頁>>代碼示例>>PHP>>正文


PHP func::parse_datetime方法代碼示例

本文整理匯總了PHP中func::parse_datetime方法的典型用法代碼示例。如果您正苦於以下問題:PHP func::parse_datetime方法的具體用法?PHP func::parse_datetime怎麽用?PHP func::parse_datetime使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在func的用法示例。


在下文中一共展示了func::parse_datetime方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: datetime2dateUSSRWithMonth

 static function datetime2dateUSSRWithMonth($sDatetime = '2007-12-31 00:00:00', $getTime = false)
 {
     if (!$sDatetime) {
         return false;
     }
     $res = func::parse_datetime($sDatetime);
     switch (intval($res['month'])) {
         case '1':
             $res['month'] = 'января';
             break;
         case '2':
             $res['month'] = 'февраля';
             break;
         case '3':
             $res['month'] = 'марта';
             break;
         case '4':
             $res['month'] = 'апреля';
             break;
         case '5':
             $res['month'] = 'мая';
             break;
         case '6':
             $res['month'] = 'июня';
             break;
         case '7':
             $res['month'] = 'июля';
             break;
         case '8':
             $res['month'] = 'августа';
             break;
         case '9':
             $res['month'] = 'сентября';
             break;
         case '10':
             $res['month'] = 'октября';
             break;
         case '11':
             $res['month'] = 'ноября';
             break;
         case '12':
             $res['month'] = 'декабря';
             break;
         default:
             break;
     }
     if ($getTime) {
         return intval($res['day']) . ' ' . $res['month'] . ' ' . $res['year'] . ' ' . $res['hour'] . ':' . $res['min'];
     } else {
         return intval($res['day']) . ' ' . $res['month'] . ' ' . $res['year'];
     }
 }
開發者ID:Sywooch,項目名稱:dobox,代碼行數:52,代碼來源:func.php

示例2: date_format3

 static function date_format3($sDatetime, $sFormat = false)
 {
     //get datetime
     if (!$sDatetime) {
         return '';
     }
     $date = func::parse_datetime($sDatetime);
     if ($sFormat !== false) {
         return date($sFormat, mktime($date['hour'], $date['min'], 0, $date['month'], $date['day'], $date['year']));
     }
     //get now
     $now = array();
     list($now['year'], $now['month'], $now['day']) = explode(',', date('Y,m,d'));
     //дата позже текущей
     if ($now['year'] < $date['year']) {
         return '';
     }
     if ($now['year'] == $date['year'] && $now['month'] == $date['month']) {
         if ($now['day'] == $date['day']) {
             return "сегодня {$date['hour']}:{$date['min']}";
         } else {
             if ($now['day'] == $date['day'] - 1) {
                 return "вчера {$date['hour']}:{$date['min']}";
             }
         }
     }
     return "{$date['day']}.{$date['month']}.{$date['year']} в {$date['hour']}:{$date['min']}";
 }
開發者ID:Sywooch,項目名稱:dobox,代碼行數:28,代碼來源:tpl.php


注:本文中的func::parse_datetime方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。