按匹配数量对数组进行排序,并将最适合的放在第一位 php
Sort Array by amount of matches and put best fit first php
我创建了一个基于标签的搜索,并希望根据相关性对搜索结果进行排序。最合适和标签的数量是相关的。假设这是搜索查询:
$search = ['A', 'B'];
这是结果:
$result = [
[
'id' => 3011,
'tags' => ['A', 'B', 'C']
],
[
'id' => 10798,
'tags' => ['A','C','D','E']
],
[
'id' => 92,
'tags' => ['A']
],
[
'id' => 4237,
'tags' => ['A', 'B']
]
];
我想将整个事情重新组织如下:
$sortResult = [
[
'id' => 4237,
'tags' => ['A', 'B'] // At first place because has 2 values and the search 2, difference 0 and matched good to search
],
[
'id' => 3011,
'tags' => ['A', 'B', 'C'] // At second place because has 3 values and the search 2, difference 1 and matched good to search
],
[
'id' => 92,
'tags' => ['A'] // At third place because has 1 value and the search 2, difference 1
],
[
'id' => 10798,
'tags' => ['A','C','D','E'] // Down here because has 4 values and the search 2, difference 2
]
];
不确定这是否适用于所有情况,但它为您的当前数据提供了所需的结果:
<?php
$search = ['A', 'B'];
$result = [
[
'id' => 3011,
'tags' => ['A', 'B', 'C'],
],
[
'id' => 10798,
'tags' => ['A', 'C', 'D', 'E'],
],
[
'id' => 92,
'tags' => ['A'],
],
[
'id' => 4237,
'tags' => ['A', 'B'],
],
];
usort($result, function ($a, $b) use ($search) {
$simA = count(array_intersect($a['tags'], $search));
$simB = count(array_intersect($b['tags'], $search));
$diffA = count(array_diff($a['tags'], $search));
$diffB = count(array_diff($b['tags'], $search));
$absA = abs(count($a['tags']) - count($search));
$absB = abs(count($b['tags']) - count($search));
$score = 0;
$score += $simB - $simA;
$score += $diffA - $diffB;
$score += $absA - $absB;
return $score;
});
echo '<pre>';
print_r($result);
echo '</pre>';
我创建了一个基于标签的搜索,并希望根据相关性对搜索结果进行排序。最合适和标签的数量是相关的。假设这是搜索查询:
$search = ['A', 'B'];
这是结果:
$result = [
[
'id' => 3011,
'tags' => ['A', 'B', 'C']
],
[
'id' => 10798,
'tags' => ['A','C','D','E']
],
[
'id' => 92,
'tags' => ['A']
],
[
'id' => 4237,
'tags' => ['A', 'B']
]
];
我想将整个事情重新组织如下:
$sortResult = [
[
'id' => 4237,
'tags' => ['A', 'B'] // At first place because has 2 values and the search 2, difference 0 and matched good to search
],
[
'id' => 3011,
'tags' => ['A', 'B', 'C'] // At second place because has 3 values and the search 2, difference 1 and matched good to search
],
[
'id' => 92,
'tags' => ['A'] // At third place because has 1 value and the search 2, difference 1
],
[
'id' => 10798,
'tags' => ['A','C','D','E'] // Down here because has 4 values and the search 2, difference 2
]
];
不确定这是否适用于所有情况,但它为您的当前数据提供了所需的结果:
<?php
$search = ['A', 'B'];
$result = [
[
'id' => 3011,
'tags' => ['A', 'B', 'C'],
],
[
'id' => 10798,
'tags' => ['A', 'C', 'D', 'E'],
],
[
'id' => 92,
'tags' => ['A'],
],
[
'id' => 4237,
'tags' => ['A', 'B'],
],
];
usort($result, function ($a, $b) use ($search) {
$simA = count(array_intersect($a['tags'], $search));
$simB = count(array_intersect($b['tags'], $search));
$diffA = count(array_diff($a['tags'], $search));
$diffB = count(array_diff($b['tags'], $search));
$absA = abs(count($a['tags']) - count($search));
$absB = abs(count($b['tags']) - count($search));
$score = 0;
$score += $simB - $simA;
$score += $diffA - $diffB;
$score += $absA - $absB;
return $score;
});
echo '<pre>';
print_r($result);
echo '</pre>';