我正在使用以下脚本,该脚本将我的标准DATETIME戳转换为小时前、天前等。
<?php require_once 'config.php'; ?>
<?php
date_default_timezone_set('Europe/Kaliningrad');
function pretty_relative_time($time) {
if ($time !== intval($time)) { $time = strtotime($time); }
$d = time() - $time;
if ($time < strtotime(date('Y-m-d 00:00:00')) - 60*60*24*3) {
$format = 'F j, Y';
if (date('Y') !== date('Y', $time)) {
$format .= ", Y";
}
return date($format, $time);
}
if ($d >= 60*60*24) {
$day = 'Yesterday';
if (date('l', time() - 60*60*24) !== date('l', $time)) { $day = date('l', $time); }
return $day . " at " . date('g:ia', $time);
}
if ($d >= 60*60*2) { return intval($d / (60*60)) . " hours ago"; }
if ($d >= 60*60) { return "less than an hour ago"; }
if ($d >= 60*2) { return intval($d / 60) . " minutes ago"; }
if ($d >= 60) { return "about a minute ago"; }
if ($d >= 2) { return intval($d) . " seconds ago"; }
return "a few seconds ago";
}
?>
然后我这样调用函数:
echo pretty_relative_time($row['user_blocked_timestamp']);
这在本地主机上运行良好,但当在我的服务器上测试时,我得到了以下错误:
It is not safe to rely on the system's timezone settings. You are required to use the date.timezone setting or the date_default_timezone set() function.
有人能解释一下我为什么会出现这个错误,以及我能做些什么来修复它吗?
到目前为止,我正在使用存储所有的DATETIME戳
UTC_TIMESTAMP() rather than now()
提前谢谢。
只需按照错误告诉的操作,在页面顶部放置默认时区。
date_default_timezone_set('Europe/Kaliningrad');
你可以在这里找到所有的时区名称。http://php.net/manual/en/timezones.php