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


PHP I18N::timeFormat方法代碼示例

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


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

示例1: formatTimestamp

 /**
  * Convert a unix timestamp into a formatted date-time value, for logs, etc.
  * Don't attempt to convert into other calendars, as not all days start at
  * midnight, and we can only get it wrong.
  *
  * @param int $time
  *
  * @return string
  */
 public static function formatTimestamp($time)
 {
     $time_fmt = I18N::timeFormat();
     // PHP::date() doesn't do I18N. Do it ourselves....
     preg_match_all('/%[^%]/', $time_fmt, $matches);
     foreach ($matches[0] as $match) {
         switch ($match) {
             case '%a':
                 $t = gmdate('His', $time);
                 if ($t == '000000') {
                     $time_fmt = str_replace($match, I18N::translate('midnight'), $time_fmt);
                 } elseif ($t < '120000') {
                     $time_fmt = str_replace($match, I18N::translate('a.m.'), $time_fmt);
                 } elseif ($t == '120000') {
                     $time_fmt = str_replace($match, I18N::translate('noon'), $time_fmt);
                 } else {
                     $time_fmt = str_replace($match, I18N::translate('p.m.'), $time_fmt);
                 }
                 break;
             case '%A':
                 $t = gmdate('His', $time);
                 if ($t == '000000') {
                     $time_fmt = str_replace($match, I18N::translate('Midnight'), $time_fmt);
                 } elseif ($t < '120000') {
                     $time_fmt = str_replace($match, I18N::translate('A.M.'), $time_fmt);
                 } elseif ($t == '120000') {
                     $time_fmt = str_replace($match, I18N::translate('Noon'), $time_fmt);
                 } else {
                     $time_fmt = str_replace($match, I18N::translate('P.M.'), $time_fmt);
                 }
                 break;
             default:
                 $time_fmt = str_replace($match, I18N::digits(gmdate(substr($match, -1), $time)), $time_fmt);
         }
     }
     return self::timestampToGedcomDate($time)->display() . '<span class="date"> - ' . $time_fmt . '</span>';
 }
開發者ID:tronsmit,項目名稱:webtrees,代碼行數:46,代碼來源:FunctionsDate.php

示例2: browserTime

 /**
  * What is the client's timestamp.
  *
  * @return string
  */
 public function browserTime()
 {
     return date(str_replace('%', '', I18N::timeFormat()), WT_TIMESTAMP + WT_TIMESTAMP_OFFSET);
 }
開發者ID:AlexSnet,項目名稱:webtrees,代碼行數:9,代碼來源:Stats.php


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