本文整理匯總了PHP中DateTimeUtil::get_chinese_standard_datetime方法的典型用法代碼示例。如果您正苦於以下問題:PHP DateTimeUtil::get_chinese_standard_datetime方法的具體用法?PHP DateTimeUtil::get_chinese_standard_datetime怎麽用?PHP DateTimeUtil::get_chinese_standard_datetime使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DateTimeUtil
的用法示例。
在下文中一共展示了DateTimeUtil::get_chinese_standard_datetime方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: get_chinese_standard_date
public static function get_chinese_standard_date($timestamp = NULL)
{
$format = "Y年m月d日";
return date($format, $timestamp ? $timestamp : time());
}
public static function get_chinese_friendly_datetime($timestamp)
{
$now = time();
$step = $now - $timestamp;
if ($step < 10) {
return "剛剛";
} elseif ($step < 60 && $step >= 10) {
return "{$step}秒前";
} elseif ($step < 3600 && $step >= 60) {
return intval($step / 60) . "分鍾前";
} elseif ($step < 86400 && $step >= 3600) {
return intval($step / 3600) . "小時前";
} elseif ($step < 604800 && $step >= 86400) {
return intval($step / 86400) . "天前";
} elseif ($step < 2592000 && $step >= 604800) {
return intval($step / 604800) . "星期前";
} elseif ($step < 31536000 && $step >= 2592000) {
return intval($step / 2592000) . "個月前";
} else {
return intval($step / 31536000) . "年前";
}
}
}
// 使用示例
echo DateTimeUtil::get_chinese_standard_datetime();