按输入字符串和位置自定义数组排序

Custom Array Sorting by input string and position

我有一个数组。它看起来像:

$arr = [
   '0' => ['id'=>9, 'q'=>'motor', 'pos'=>1],
   '1' => ['id'=>10, 'q'=>'NULL', 'pos'=>0],
   '2' => ['id'=>7, 'q'=>'motor', 'pos'=>2],
   '3' => ['id'=>8, 'q'=>'NULL',  'pos'=>0],
   '4' => ['id'=>11, 'q'=>'motor','pos'=>3],
   '5' => ['id'=>11, 'q'=>'exhaust','pos'=>1]
];

如何对上面的数据进行排序以使其看起来像(如果 q='motor' 在搜索字符串中):

 $arr = [
       '0' => ['id'=>9, 'q'=>'motor', 'pos'=>1],
       '2' => ['id'=>7, 'q'=>'motor', 'pos'=>2],
       '4' => ['id'=>11, 'q'=>'motor','pos'=>3],
       '1' => ['id'=>10, 'q'=>'NULL', 'pos'=>0],
       '3' => ['id'=>8, 'q'=>'NULL',  'pos'=>0],
       '5' => ['id'=>11, 'q'=>'exhaust','pos'=>1]
    ];

所以:

function custom_sort($input_query, $arr) {
   foreach($arr as $key=>$row) {
      if (strpos($input_query, $row['q'])) {
          ... How to Sort By Pos?
      }
   }
}

谢谢!

已更新(question/answer) p.s:我正在尝试使用自定义变量作为输入:$q

usort($arr, function($a, $b) use ($q) {
        if ($a['q'] == $q) {
            if($b['q'] == $q) {
                return ($a['pos'] > $b['pos']) ? 1 : -1;
            }
            return -1;
        }
        if ($b['q'] == $q) {
            return 1;
        }
        return 0;
    });

并且该功能停止工作。我该如何解决?

您可以使用usort

usort($arr, function($a, $b) {
    if ($a['q'] == 'motor') {
        if($b['q'] == 'motor') {
            return ($a['pos'] > $b['pos']) ? 1 : -1;
        }
        return -1;
    }
    if ($b['q'] == 'motor') {
        return 1;
    }
    return 0;
});

如果您需要不同的顺序,只需更改功能以满足您的需要。

U sort 可以帮到你

usort( $arr, function ( $a, $b ) {
    if ( $a['q'] === $b['q'] ) {
        return $a['pos'] < $b['pos'] ? -1 : 1;
    }
    if ( $a['q'] === 'motor' ) {
        return -1;
    }
    if ( $b['q'] === 'motor' ) {
        return 1;
    }
    return 0;
} );

这里有一个 usort 可以处理您的要求,包装在一个可以就地转换数组的函数中:

  1. 包含 $queryq 键的项目将被放置在数组的前面。

  2. 具有 q 键且包含 $query 的项目将按其 pos 值升序排序。

  3. 其他所有内容将按其 pos 值排序。

function custom_sort($query, &$arr) {
    usort($arr, function($a, $b) use ($query) {
        $in_a = strpos($a['q'], $query) !== false;
        $in_b = strpos($b['q'], $query) !== false;

        if ($in_a && !$in_b) {
            return -1;
        }
        if (!$in_a && $in_b) {
            return 1;
        }

        return $a['pos'] - $b['pos'];
    });
}

custom_sort("motor", $arr);