php.net 文档中有一个非常好的函数,它使您能够以 Facebook 样式的方式(例如,、、2 minutes ago
或4 weeks ago
)格式化时间3 years ago
。
但是,我更喜欢 Stackoverflow 和 Apple Mail 的方式,通常如下:
- 当前日期在
x seconds ago
或x hours ago
或时间中列出(例如,4:35pm
)。 - 昨天被列为“昨天”。
- 之后的所有日子都按月/日/年列出。
有没有人改编这个 php.net 脚本来做到这一点,或者可能共享一个不同的脚本来实现相同的目标?
<?php
function nicetime($date)
{
if(empty($date)) {
return "No date provided";
}
$periods = array("second", "minute", "hour", "day", "week", "month", "year", "decade");
$lengths = array("60","60","24","7","4.35","12","10");
$now = time();
$unix_date = strtotime($date);
// check validity of date
if(empty($unix_date)) {
return "Bad date";
}
// is it future date or past date
if($now > $unix_date) {
$difference = $now - $unix_date;
$tense = "ago";
} else {
$difference = $unix_date - $now;
$tense = "from now";
}
for($j = 0; $difference >= $lengths[$j] && $j < count($lengths)-1; $j++) {
$difference /= $lengths[$j];
}
$difference = round($difference);
if($difference != 1) {
$periods[$j].= "s";
}
return "$difference $periods[$j] {$tense}";
}
$date = "2009-03-04 17:45";
$result = nicetime($date); // 2 days ago
?>