蓝雨 发表于 2008-1-22 13:52:57

仿动网一个发帖显示不同时间的功能

修改文件:forumdisplay.php<BR><BR>找到
<DIV class=quote>
<H5>引用:</H5>
<BLOCKQUOTE>    <BR>$thread[\'dateline\'] = gmdate($dateformat, $thread[\'dateline\'] + $timeoffset * 3600);<BR>    $thread[\'lastpost\'] = gmdate(\"$dateformat $timeformat\", $thread[\'lastpost\'] + $timeoffset * 3600);</BLOCKQUOTE></DIV>修改为:
<DIV class=quote>
<H5>引用:</H5>
<BLOCKQUOTE>    $posttime = time() - $thread[\'dateline\'];<BR>    if($posttime < 3600) {<BR>      $posttime = ceil($posttime / 60);<BR>      $thread[\'dateline\'] = $posttime.\"分钟前\";<BR>    }else{<BR>      $thread[\'dateline\'] = gmdate($dateformat, $thread[\'dateline\'] + $timeoffset * 3600);<BR>    }<BR>    <BR>    $lastpost = time() - $thread[\'lastpost\'];<BR>    if($lastpost < 3600) {<BR>      $lastpost = ceil($lastpost / 60);<BR>      $thread[\'lastpost\'] = $lastpost.\"分钟前\";<BR>    }else{<BR>      $thread[\'lastpost\'] = gmdate(\"$dateformat $timeformat\", $thread[\'lastpost\'] + $timeoffset * 3600);<BR>    }</BLOCKQUOTE></DIV>
<P>这只是设定为一小时内的帖子用分钟来显示,如果有兴趣可以自己修改为“**小时**分钟前”<BR>有问题可以联系 lucifershenggmail.com改为@</P>
<P></P>
<P></P>
页: [1]
查看完整版本: 仿动网一个发帖显示不同时间的功能