根据优先级列表获取最佳数组值
我会尽力解释这一点。
我有一个名为 $linkSets
的数组,它的数组整体如下所示:
<string>,<integer>
<string>,<integer>
<string>,<integer>
我还有一个优先级列表,按以下顺序排列: 22 -> 18-> 35-> 34.
.我想检查 $linkSets
数组中的每个整数,并根据
。
。
我编写了如下所示的代码:
foreach($linkSets as $link)
{
$parts = explode(',', $link);
if($parts[1] == 22) {
$best = $parts[0];
break;
}
if($parts[1] == 18) {
$best = $parts[0];
break;
}
if($parts[1] == 35) {
$best = $parts[0];
break;
}
if($parts[1] == 34) {
$best = $parts[0];
break;
}
}
echo "best: $best";
但正如您可能看到的那样,它不起作用,它不遵守优先级列表。
我想不出有什么方法可以在不多次循环 $linkSets
数组的情况下执行此操作。
I'll try and explain this the best I can.
I have an array called $linkSets
, and it has array entires that look like:
<string>,<integer>
<string>,<integer>
<string>,<integer>
I also have a priority list, that goes in this order: 22 -> 18 -> 35 -> 34
. I would like to check each integer in the $linkSets
array, and get the best <string>
from the same array entry based on the <integer>
.
I wrote up code that looks like this:
foreach($linkSets as $link)
{
$parts = explode(',', $link);
if($parts[1] == 22) {
$best = $parts[0];
break;
}
if($parts[1] == 18) {
$best = $parts[0];
break;
}
if($parts[1] == 35) {
$best = $parts[0];
break;
}
if($parts[1] == 34) {
$best = $parts[0];
break;
}
}
echo "best: $best";
But as you can probably see it doesn't work, it doesn't obey the priority list.
I can't think of any way to do this without looping through the $linkSets
array multiple times.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有数百种方法可以解决这个问题,这里有一个相对简单的方法:
或者甚至更简单,尽管有点黑客:
工作示例:
There are hundreds of ways to approach this problem, here's one relatively simple:
Or even simpler, albeit a bit hackier:
Working example: