gpt4 book ai didi

PHP 数组搜索

转载 作者:行者123 更新时间:2023-12-02 18:36:56 25 4
gpt4 key购买 nike

是否有任何函数可以使用数组 $needle 完成与 array_search 等效的功能?就像,这将是一个理想的解决方案:

$needle = array('first', 'second');
$haystack = array('fifth','second','third', 'first');

// Returns key 1 in haystack
$search = array_search( $needle, $haystack );

如果没有函数,是否还有其他接受 Needed 的函数,这些函数可能是我可以用来创建自定义函数的数组?

最佳答案

这可能有助于构建您的函数:

$intersection = array_intersect($needle, $haystack);

if ($intersection) // $haystack has at least one of $needle

if (count($intersection) == count($needle)) // $haystack has every needle

关于PHP 数组搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5631261/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com