从Y-m-d H:i:S格式的日期数组中获取最新日期(&Q;Y-m-d H:I:S&Q;)
我有Y-m-d H:i:s
格式的日期数组,如下所示:
array(5) {
[0]=> string(19) "2012-06-11 08:30:49"
[1]=> string(19) "2012-06-07 08:03:54"
[2]=> string(19) "2012-05-26 23:04:04"
[3]=> string(19) "2012-05-27 08:30:00"
[4]=> string(19) "2012-06-08 08:30:55"
}
我想知道最近的日期。
换句话说,今天是2012年6月13日,哪个日期时间最接近今天的日期?
从我的示例数组中,我期望2012-06-11 08:30:49
。
我如何才能做到这一点?
解决方案
执行循环,将值转换为日期,并将最新的值存储在变量中。
$mostRecent= 0;
foreach($dates as $date){
$curDate = strtotime($date);
if ($curDate > $mostRecent) {
$mostRecent = $curDate;
}
}
诸如此类的事情……你明白我的意思了吗? 如果您想要今天之前的最新版本:
$mostRecent= 0;
$now = time();
foreach($dates as $date){
$curDate = strtotime($date);
if ($curDate > $mostRecent && $curDate < $now) {
$mostRecent = $curDate;
}
}
相关文章