当前位置:  开发笔记 > 编程语言 > 正文

检查一个数组的元素是否在PHP中的另一个数组中

如何解决《检查一个数组的元素是否在PHP中的另一个数组中》经验,为你挑选了5个好方法。

我在PHP中有两个数组,如下所示:

人:

Array
(
    [0] => 3
    [1] => 20
)

诚征罪犯:

Array
(
    [0] => 2
    [1] => 4
    [2] => 8
    [3] => 11
    [4] => 12
    [5] => 13
    [6] => 14
    [7] => 15
    [8] => 16
    [9] => 17
    [10] => 18
    [11] => 19
    [12] => 20
)

如何检查是否所有的的人们元素是在通缉犯阵列?

在这个例子中,它应该返回,true因为20Wanted Criminals中.

提前致谢.



1> Greg..:

你可以用array_intersect().

$result = !empty(array_intersect($people, $criminals));


正如评论中所提到的,我发现`!empty`**不能按预期工作**.相反,我使用`count()`:`!count(array_intersect($ people,$ criminals));`
不能将empty()与变量以外的任何东西一起使用.
从您链接到的页面:"在PHP 5.5之前,empty()仅支持变量;其他任何内容都将导致解析错误.换句话说,以下内容将不起作用:empty(trim($ name)).相反,使用trim($ name)== false."
当它抛出致命错误时,为什么这被标记为65票的答案:在写上下文中不能使用函数返回值?

2> papsy..:

使用array_intersect()和count()(而不是空)没有什么问题.

例如:

$bFound = (count(array_intersect($criminals, $people))) ? true : false;


它没有任何问题,但`count()`不被认为是高效的(如果你关心微优化,那就是)

3> ihtus..:

如果'空'不是最好的选择,那么这个:

if (array_intersect($people, $criminals)) {...} //when found

要么

if (!array_intersect($people, $criminals)) {...} //when not found



4> Paul Dragoon..:

该代码无效,因为您只能将变量传递给语言结构.empty()是一种语言结构.

你必须分两行:

$result = array_intersect($people, $criminals);
$result = !empty($result);


@grantwparks变量函数与此完全无关......

5> Frank Forte..:

in_array与array_intersect的性能测试:

$a1 = array(2,4,8,11,12,13,14,15,16,17,18,19,20);

$a2 = array(3,20);

$intersect_times = array();
$in_array_times = array();
for($j = 0; $j < 10; $j++)
{
    /***** TEST ONE array_intersect *******/
    $t = microtime(true);
    for($i = 0; $i < 100000; $i++)
    {
        $x = array_intersect($a1,$a2);
        $x = empty($x);
    }
    $intersect_times[] = microtime(true) - $t;


    /***** TEST TWO in_array *******/
    $t2 = microtime(true);
    for($i = 0; $i < 100000; $i++)
    {
        $x = false;
        foreach($a2 as $v){
            if(in_array($v,$a1))
            {
                $x = true;
                break;
            }
        }
    }
    $in_array_times[] = microtime(true) - $t2;
}

echo '

'.implode('
',$intersect_times).'
array_intersect avg: '.(array_sum($intersect_times) / count($intersect_times)); echo '

'.implode('
',$in_array_times).'
in_array avg: '.(array_sum($in_array_times) / count($in_array_times)); exit;

结果如下:

0.26520013809204
0.15600109100342
0.15599989891052
0.15599989891052
0.1560001373291
0.1560001373291
0.15599989891052
0.15599989891052
0.15599989891052
0.1560001373291
array_intersect avg: 0.16692011356354

0.015599966049194
0.031199932098389
0.031200170516968
0.031199932098389
0.031200885772705
0.031199932098389
0.031200170516968
0.031201124191284
0.031199932098389
0.031199932098389
in_array avg: 0.029640197753906

in_array至少快5倍.请注意,我们会在找到结果后立即"中断".

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有