回到两个数组的交集

WBOY
Freigeben: 2016-06-13 13:05:56
Original
832 Leute haben es durchsucht

返回两个数组的交集
A数组

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
array(
    [0] =>
        array(

        ['action_id'] =>
        3
        )
    [1] =>
        array(

        ['action_id'] =>
        2
    )
    [2] =>
        array(

        ['action_id'] =>
        1
    )
    [3] =>
        array(

        ['action_id'] =>
        7
    )
    [4] =>
        array(

        ['action_id'] =>
        11
    )
)

Nach dem Login kopieren

B数组:
PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
array(
    [0] =>
    array(

    ['action_id'] =>
    3
        ['type'] =>
        0
        ['order_num'] =>
        67
    )
    [1] =>
    array(

    ['action_id'] =>
    2
        ['type'] =>
        0
        ['order_num'] =>
        66
    )
    [2] =>
    array(

    ['action_id'] =>
    1
        ['type'] =>
        0
        ['order_num'] =>
        65
    )
    [3] =>
    array(

    ['action_id'] =>
    7
        ['type'] =>
        0
        ['order_num'] =>
        64
        )
    [8] =>
    array(

    ['action_id'] =>
    14
        ['type'] =>
        0
        ['order_num'] =>
        40
        )
    [13] =>
    array(

    ['action_id'] =>
    11
        ['type'] =>
        0
        ['order_num'] =>
        30
    )
)

Nach dem Login kopieren

使用array_intersect_key返回的为什么是
PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
array(
    [0] =>
    array(

    ['action_id'] =>
    3
        ['type'] =>
        0
        ['order_num'] =>
        67
    )
    [1] =>
    array(

    ['action_id'] =>
    2
        ['type'] =>
        0
        ['order_num'] =>
        66
    )
    [2] =>
    array(

    ['action_id'] =>
    1
        ['type'] =>
        0
        ['order_num'] =>
        65
    )
    [3] =>
    array(

    ['action_id'] =>
    7
        ['type'] =>
        0
        ['order_num'] =>
        64
        )
    
)

Nach dem Login kopieren

action_id为11的为什么没了??

------解决方案--------------------
PHP code
$a = array(
  0 => array('action_id' => 3),
  1 => array('action_id' => 2),
  2 => array('action_id' => 1),
  3 => array('action_id' => 7),
  4 => array('action_id' => 11),
);

$b = array(
  0 => array('action_id' => 3, 'type' => 0, 'order_num' => 67),
  1 => array('action_id' => 2, 'type' => 0, 'order_num' => 66),
  2 => array('action_id' => 1, 'type' => 0, 'order_num' => 65),
  3 => array('action_id' => 7, 'type' => 0, 'order_num' => 64),
  8 => array('action_id' => 14, 'type' => 0, 'order_num' => 40),
  13 => array('action_id' => 11, 'type' => 0, 'order_num' => 30),
);

foreach($a as $v) $dict[] = $v['action_id'];
foreach($b as $k=>$v) if(in_array($v['action_id'], $dict)) $c[$k] = $v;
print_r($c); <div class="clear">
                 
              
              
        
            </div>
Nach dem Login kopieren
Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage