当前位置: 首页>>代码示例>>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;未经允许,请勿转载。