比较数组值并根据自定义值(PHP)在数组中查找下一个值

时间:2018-09-25 07:56:46

标签: php arrays compare

我正在尝试比较数组中的值,然后根据所选值在数组中选择下一个值。

例如

array(05:11,05:21,05:24,05:31,05:34,05:41,05:44,05:50,05:54);

,如果搜索值为例如05:34,则返回的搜索值为05:41。如果值为05:50,则返回05:54

我确实找到了一些对this post有帮助的东西,但是由于我的价值观:无效。

有什么想法可以使它正常工作吗?

function getClosest($search, $arr) {
   $closest = null;
   foreach ($arr as $item) {
      if ($closest === null || abs($search - $closest) > abs($item - $search)) {
         $closest = $item;
      }
   }
   return $closest;
}

更新 也许我应该以某种方式将数组中的值转换为更方便搜索的内容-只是一种思考。

3 个答案:

答案 0 :(得分:2)

使用array_search()可以根据数组值找到数组项的索引。因此,使用它来获取搜索项目的索引。

function getClosest($search, $arr) {
    return $arr[array_search($search, $arr)+1];
}

更新

如果数组中不存在搜索值或搜索值是数组函数的最后一项,则返回空。

function getClosest($search, $arr) {
    $result = array_search($search, $arr);  
    return $result && $result<sizeof($arr)-1 ? $arr[$result+1] : "";
}

demo中查看结果

答案 1 :(得分:2)

使用内部指针数组迭代器-从性能的角度来看应该比array_search更好-您可以获取下一个值,如下所示:

$arr = array('05:11','05:21','05:24','05:31','05:34','05:41','05:44','05:50','05:54');
function getClosest($search, $arr) {

    $item = null;
    while ($key = key($arr) !== null) {
        $current = current($arr);
        $item = next($arr);
        if (
            strtotime($current) < strtotime($search) &&
            strtotime($item) >= strtotime($search)
        ) {
            break;
        } else if (
            strtotime($current) > strtotime($search)
        ) {
            $item = $current;
            break;
        }
    }

    return $item;
}

print_r([
    getClosest('05:50', $arr),
    getClosest('05:34', $arr),
    getClosest('05:52', $arr),
    getClosest('05:15', $arr),
    getClosest('05:10', $arr),
]);

这将输出:-

Array (
    [0] => 05:50
    [1] => 05:34
    [2] => 05:54
    [3] => 05:21
    [4] => 05:11
)

实时示例https://3v4l.org/tqHOC

答案 2 :(得分:1)

首先将数组值转换为字符串,因为您在值中使用了':',例如

array('05:11','05:21','05:24','05:31','05:34','05:41','05:44','05:50','05:54');

然后使用下面的代码从数组中查找下一个值

function getClosest($search, $arr) {
  return $arr[array_search($search,$arr) + 1];
}