嗨能有人帮我,我附和了在mysql表中的时间戳,但我想PHP来计算天/小时/分钟的时间戳。
这是可能的,即时消息仍然是新的PHP和MySQL,我正在学习,所以有人请引导我在正确的方向或告诉我将如何做到这一点。谢谢
echo "{$news['date_added']}";?>
我所要的输出是秒数:得到12秒前或添加3分钟前或添加3天前或添加4个月前
我是正确的思维脚本应该看起来像这样:
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 = "{$news['content']}";
$result = nicetime($date); // 2 days ago ?>
+0
你能不能给我们的例子中,你所要的输出是什么样子? –
+0
又一个“小时前”的问题。你有没有搜索? –
+0
所以现在你的问题已经完全改变了原来的。请在下次发布问题之前,验证您的问题是否足够清晰,以便人们正确回答。 –