任何人都可以帮忙。我有这个脚本从可怕的标准日期转换mysql时间戳,并以“约2秒前或约1小时前”用户友好的方式。
我的问题是这个。除了当用户发布内容时,它发布的最新内容,他们发布的最新内容回复“大约0之前”没有给出发布的时间,直到他们在此之后发布其他内容,他们才看到时间他们在此之前发布了。
所以我想知道为什么这是因为我无法弄明白,我希望它在用户发布后立即说“立即添加”,然后继续进行,因为脚本说20秒前添加,2分钟前等。
一个例子是;
(内容1)“发布约0年前” (内容2)“大约8分钟前发布” (内容3)“约5小时前发布”
然后内容1只会更新另一条内容的发布时间,否则不会。
所以内容1应该说刚刚发布,然后几秒后发布约5秒前,1分钟前,5小时前,7天前等等。
<div class="board-wall-feeds">
<div class="social_header">
<?php echo "$profile[2]" ?>'s News & Updates:
</div>
<?php
$timeline_set = get_timeline();
while ($news = mysql_fetch_array($timeline_set)) {
echo "
<div class=\"news_feeds_board_text\">{$news['content']}
<div class=\"social_footer\">about ".$t.$labels[$i]." ago<a href=\"../../../delete_news_post.php?to=".$news['id']."</div><div class=\"social_clip\"></div></div></a>";
$datetime1 = new DateTime();
$datetime2 = new DateTime ($news['date_added']);
$interval = $datetime1->diff($datetime2);
$mdhms = explode('-',$interval->format('%m-%d-%H-%i-%s'));
$labels = Array(' months', ' days', ' hours', ' minutes', ' seconds');
$i = 0;
foreach($mdhms as $t){
if($t > 0) break;
$i+=1;
}
} ?>
</div>
答案 0 :(得分:3)
您可以在此处尝试relative time function
function relativetime($ts)
{
$diff = time() - $ts;
if($diff == 0)
return 'now';
elseif($diff > 0)
{
$day_diff = floor($diff / 86400);
if($day_diff == 0)
{
if($diff < 60) return 'just now';
if($diff < 120) return '1 minute ago';
if($diff < 3600) return floor($diff / 60) . ' minutes ago';
if($diff < 7200) return '1 hour ago';
if($diff < 86400) return floor($diff / 3600) . ' hours ago';
}
if($day_diff == 1) return 'Yesterday';
if($day_diff < 7) return $day_diff . ' days ago';
if($day_diff < 31) return ceil($day_diff / 7) . ' weeks ago';
if($day_diff < 60) return 'last month';
return date('F Y', $ts);
}
else
{
$diff = abs($diff);
$day_diff = floor($diff / 86400);
if($day_diff == 0)
{
if($diff < 120) return 'in a minute';
if($diff < 3600) return 'in ' . floor($diff / 60) . ' minutes';
if($diff < 7200) return 'in an hour';
if($diff < 86400) return 'in ' . floor($diff / 3600) . ' hours';
}
if($day_diff == 1) return 'Tomorrow';
if($day_diff < 4) return date('l', $ts);
if($day_diff < 7 + (7 - date('w'))) return 'next week';
if(ceil($day_diff / 7) < 4) return 'in ' . ceil($day_diff / 7) . ' weeks';
if(date('n', $ts) == date('n') + 1) return 'next month';
return date('F Y', $ts);
}
}
在此功能中,您必须将time
作为$ts
传递,由strtotime function
转换。