douji2283 2018-11-02 03:54
浏览 73
已采纳

检查数组是否在数组中并在PHP中获得匹配

I have an associative array and wanted to check if an array is in that associative array, If yes, I want to get the matching array.

My associative array look something like this:

 $assoc_array = array(
  array(
   'firstname' => 'John',
   'lastname' => 'Doe',
   'age' => 26
  ),
  array(
   'firstname' => 'Sophia',
   'lastname' => 'Smith',
   'age' => 30
  )
 );

Then if I want to check this array:

 $array = array(
   'firstname' => 'John',
   'lastname' => 'Doe'
 );

It would give me this result:

array(
 'firstname' => 'John',
 'lastname' => 'Doe',
 'age' => 26
);

Any help would be greatly appreciated.

  • 写回答

3条回答 默认 最新

  • douwen1901 2018-11-02 04:12
    关注

    If you loop the array and use array_intersect it will return first and lastname.
    If there is no match it returns empty array.

    This means we can do an easy if on the match if that is true then add the subarray to your new array.

    foreach($assoc_array as $sub){
        $match = array_intersect($sub, $array);
        if($match) $new[] = $sub;
    }
    var_dump($new);
    

    https://3v4l.org/enaXb

    Or condense it to:

    foreach($assoc_array as $sub){
        if(array_intersect($sub, $array)) $new[] = $sub;
    }
    var_dump($new);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

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

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

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

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

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

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

客服 返回
顶部