doutuanxiao4619 2015-08-25 00:42
浏览 186
已采纳

如何使用for循环比较两个数组?

I have 2 explode arrays from the database. and this is what i did.

    $searches = explode(',', $searchengine);
    $icons = explode(',', $icon);
    $b = count($searches);
    $c = count($icons);

I also made an array to compare each explode array to.

$searchesa = array("google","yahoo","bing");
    $d = count($searchesa);
    $iconsa = array("facebook","twitter","googleplus","linkedin","pinterest","delicious","stumbleupon","diigo");
    $y = count($iconsa);

Then i used for loops to travel to different array indexes. But the result is wrong, and sometimes I have an error which says UNDEFINED OFFSET.

for ($a=0; $a <$d ; $a++) {
    if ($searches[$a] == $searchesa[$a]) 
            {echo '<br>'.$searchesa[$a].': check ';
        }else
        echo '<br>'.$searchesa[$a].': chok ';
    }

for ($x=0; $x <$y ; $x++) {
    if ($icons[$x] == $iconsa[$x]) 
        echo '<br>'.$iconsa[$x].': check ';
    else
        echo '<br>'.$iconsa[$x].': chok ';
}

If the index from the database and the array I made are the same, it will state check, else it will state chok.

  • 写回答

4条回答 默认 最新

  • dongshai1944 2015-08-25 00:56
    关注

    I posted this in my comment, but I suppose the outline will work better in an answer.

    I hope this could be of any help:

    <?php
    $array_a = ['test','test2']; // assume this is your first array
    $array_b = ['test']; // assume this is the array you wan to compare against
    $found = false;
    
    foreach ($array_a as $key_a => $val_a) {
        $found = false;
        foreach ($array_b as $key_b => $val_b) {
           if ($val_a == $val_b) {
                echo '<br>'. $val_b .': check ';     
                $found = true;
            }     
        }
        if (!$found)
            echo '<br>'. $val_a .': chok ';
    }
    ?>
    

    EDIT: Please excuse me for not testing it.

    This thing will loop through the first array, and compare it with every value in the other array.

    Tip: You can easily put this in a function and call it like compare($arr1, $arr2)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部