参数为多个日期时间的数组,返回离当前时间最近的那个时间

2020-04-17T23:53:52
//我只能想到foreach方式咯,欢迎大神修改
$data = [
    '2020-02-02 11:11:11',
    '2019-02-02 11:55:11',
    '2018-12-02 11:33:11',
    '2017-12-02 11:22:11',
];

$near = array_reduce($data, function($a, $b){
   return abs((time() - strtotime($a))) < abs((time() - strtotime($b))) ? $a : $b;
});

echo $near;
当前页面是本站的「Baidu MIP」版。发表评论请点击:完整版 »