2

我有一个关于如何正确显示执行操作后经过的时间的问题,我有一个简单的评论系统,并且想添加在发表评论时正确显示的功能,我做了一些研究并遇到了这个问题:

 function ago($time)
{

$periods = array("second", "minute", "hour", "day", "week", "month", "year", "decade");
$lengths = array("60","60","24","7","4.35","12","10");

  $now = date('Y-m-d h:i:s');
$now=strtotime($now);
if($now>$time)
   $difference     = $now - $time;
   elseif($time>$now)
    $difference     = $time - $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] ago ";
 }  

我更改了变量 $now 以获取日期而不是时间的值,我有一个数据库,该数据库有一个表,该表有一个处理时间的列,它设置为 datetime 所以我然后使用 strtotime 函数将其转换并发送它通过函数:

  $time=$row['time'];
  $time=strtotime($time);
  $ago=ago($time);

问题是它返回错误的时期,例如,一分钟前发表评论返回两小时前,时区是正确的,我什至打印了实际的日期和时间,例如,今天,我打印了这个:

  10 hours ago 2013-02-08 12:09:35 2013-02-08 02:18:52

如您所见,时间之间的差异应该是两个小时左右,而不是十个小时。有没有人对如何做到这一点有更好的想法,或者任何人都可以指出错误在哪里?

4

2 回答 2

2

问题是你的mysql服务器和你的php.ini或者在不同的时区。坚持一个。如果您无法更改服务器时区,那么您所要做的就是从 mysql 的 datetime 字段中取回值,然后使用 PHP 将其转换回 UNIX 时间戳。

// Start by setting the datetime zone for all your pages in PHP
date_default_timezone_set('Europe/Lisbon');

//Extract the datetime from the database regardless of the databases timezone.
$time = '2012-07-02 22:30:52';

//Then in PHP convert it into a UNIX timestamp.
$timestamp = strtotime($time);

现在,您的所有代码和时间都相对于您在date_default_timezone_set函数中指定的时区。

于 2013-02-08T11:47:48.450 回答
-2

最好的方法就是根本不使用该功能,因为没有人真正想要它。只需显示发表评论的时间。(如果有人真的想要信息:比较的时钟在屏幕的右下角)。

于 2021-01-28T10:58:11.073 回答