这是我的PHP代码.....
<?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 "Incorrect Date";
}
// is it future date or past date
if($now > $unix_date) {
$difference = $now - $unix_date;
$tense = "ago";
} else {
$difference = $unix_date - $now;
$tense = "ago";
}
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}";
}
?>
但它没有正确显示时间....如果给出任何当前时间它显示25-35秒前等等......但我想做一个像digg这样的时差功能。 com以2 Mints AND 3 Sec之前的格式...我该怎么做
答案 0 :(得分:1)
尝试使用其他方式 - 在开始时将所有$lengths
值相乘(即$multiplied
)。
1.将$difference
除以该值
2.如果&gt; = 1,那么你有一个解决方案
否则$multiplied
除以array_pop($lengths)
值。转到2.
你有解决方案。
我认为就是这样。
BTW - $tense
始终为"ago"
。
答案 1 :(得分:0)
查看并了解Kohana Date class的Date::span
和Date::fuzzy_span
方法。