通过两个参数进行数组高级搜索

发布于 2024-12-01 19:37:54 字数 765 浏览 0 评论 0原文

我看到这个主题 我已经使用了这段代码:

$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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄情伤 2024-12-08 19:37:54

您可以使用 uasort
示例:

    uasort($test, function($a, $b){
        return strcmp($a[0], $b[0]);
    });

如果您的 php 版本 < 5.3、需要定义cmp函数。

You can use uasort.
Example:

    uasort($test, function($a, $b){
        return strcmp($a[0], $b[0]);
    });

If you php version < 5.3, you need to define the cmp function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文