本文整理汇总了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>';
}
示例2: browserTime
/**
* What is the client's timestamp.
*
* @return string
*/
public function browserTime()
{
return date(str_replace('%', '', I18N::timeFormat()), WT_TIMESTAMP + WT_TIMESTAMP_OFFSET);
}