通过两个参数进行数组高级搜索
我看到这个主题 我已经使用了这段代码:
$arr = array("hello", "try", "hel", "hey hello");
$search = "hey"; //your search var
for ($i=0; $i<count($arr); $i++) {
$temp_arr[$i] = levenshtein($search, $arr[$i]);
}
asort($temp_arr);
foreach ($temp_arr as $k => $v) {
$sorted_arr[] = $arr[$k];
}
但现在我想按数组中的数组进行搜索。例如,如果我有这个数组:
$test = array(
0 => array("google", "http://www.google.com"),
1 => array("test", "http://www.test.com"),
2 => array("test2", "http://www.test2.com")
)
所以我想通过 $test[$x][0]
( $x = num
) 进行度假,我该怎么做?
I saw this topic And I have used this code:
$arr = array("hello", "try", "hel", "hey hello");
$search = "hey"; //your search var
for ($i=0; $i<count($arr); $i++) {
$temp_arr[$i] = levenshtein($search, $arr[$i]);
}
asort($temp_arr);
foreach ($temp_arr as $k => $v) {
$sorted_arr[] = $arr[$k];
}
But now I want to search by array in array. For example, if I have this array:
$test = array(
0 => array("google", "http://www.google.com"),
1 => array("test", "http://www.test.com"),
2 => array("test2", "http://www.test2.com")
)
So I want resort by $test[$x][0]
( $x = num
), How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 uasort。
示例:
如果您的 php 版本 < 5.3、需要定义cmp函数。
You can use uasort.
Example:
If you php version < 5.3, you need to define the cmp function.