【发布时间】:2015-11-21 03:53:29
【问题描述】:
我想查找日期之间的间隔,小时功能在时间更改前一小时无法正常工作。我知道有一个答案可以部分回答这个问题here。但它不按小时回答。
我有以下 php 代码:
//helper function to pluralize words
function pluralize( $count, $text ){
return $count . ( ( $count == 1 ) ? ( " $text" ) : ( " ${text}s" ) );
}
/**
* Difference of dates
* @param type $date1 DateTime first date
* @param type $date2 DateTime second date
* @return type string year, month, day, hour, minute, second
*/
function timeDiff($date1, $date2 ){
$string = "";
$interval =$date1->diff($date2);
$suffix = ( $interval->invert ? ' ago' : '' );
if ( $v = $interval->y >= 1 ) $string .= pluralize( $interval->y, 'year' ). ', ';
if ( $v = $interval->m >= 1 ) $string .= pluralize( $interval->m, 'month' ). ', ';
if ( $v = $interval->d >= 1 ) $string .= pluralize( $interval->d, 'day' ). ', ';
if ( $v = $interval->h >= 1 ) $string .= pluralize( ($interval->h), 'hour' ) . ', ';
if ( $v = $interval->i >= 1 ) $string .= pluralize( $interval->i, 'minute' ). ', ';
if ( $v = $interval->i >= 1 ) $string .= pluralize( $interval->s, 'second' ). ' ';
return $string . $suffix;
}
我希望通过以下测试。
$date1 = new DateTime("2014-05-10 20:00:00");
$date2 = new DateTime("2015-11-20 19:45:00");
//This should produce "1 year, 6 months, 9 days, 23 hours, 45 minutes"
//But it does produce "1 year, 6 months, 10 days, 45 minutes"
timeDiff($date1, $date2);
$date3 = new DateTime("2015-11-20 20:00:00");
//This should, and does produce "1 year, 6 months, 10 days"
timeDiff($date1, $date3);
这看起来像 @John Conde 在 cmets 中指出的 version issue。它已在 PHP 5.4.24 及更高版本的新版本中修复。对于以前版本的 PHP,我该如何解决这个问题?
【问题讨论】:
-
你是说我的服务器做错了什么吗?这很有趣。 php版本是否存在已知问题?
-
我们如何解决这个版本的问题?