//两个日期之间的差异 此功能运行良好,但显示错误的时间格式。请问如何将此功能的时间从GMT更改为GMT + 1?显示15小时22分钟而不是16小时22分钟。 感谢
function get_date_diff($start, $end="NOW")
{
$sdate = strtotime($start);
$edate = strtotime($end);
$timeshift = "";
$time = $edate - $sdate;
if($time>=0 && $time<=59) {
// Seconds
$timeshift = $time.' seconds ';
} elseif($time>=60 && $time<=3599) {
// Minutes + Seconds
$pmin = ($edate - $sdate) / 60;
$premin = explode('.', $pmin);
$presec = $pmin-$premin[0];
$sec = $presec*60;
$timeshift = $premin[0].' min '.round($sec,0).' sec '."<b>ago</b>";
} elseif($time>=3600 && $time<=86399) {
// Hours + Minutes
$phour = ($edate - $sdate) / 3600;
$prehour = explode('.',$phour);
$premin = $phour-$prehour[0];
$min = explode('.',$premin*60);
$presec = '0.'.$min[1];
$sec = $presec*60;
$timeshift = $prehour[0].' hrs '.$min[0].' min '.round($sec,0).' sec '."<b>ago</b>";
} elseif($time>=86400) {
// Days + Hours + Minutes
$pday = ($edate - $sdate) / 86400;
$preday = explode('.',$pday);
$phour = $pday-$preday[0];
$prehour = explode('.',$phour*24);
$premin = ($phour*24)-$prehour[0];
$min = explode('.',$premin*60);
$presec = '0.'.$min[1];
$sec = $presec*60;
$timeshift = $preday[0].' days '.$prehour[0].' hrs '.$min[0].' min '.round($sec,0).' sec '."<b>ago</b>";
}
return $timeshift;
}
答案 0 :(得分:0)
使用date_default_timezone_set()
功能设置时区。如果这不起作用,则PHP <5.1.0并应设置TZ
环境变量。检查here以获取用于确定时区的详细优先顺序。
您也可以跳过您编写的所有代码,并使用date()
函数以几乎任何您希望的格式获取生成的日期时间字符串。