Compare the keys of two arrays, and return the matches:


SUBMITTED BY: henry1874w

DATE: June 23, 2017, 9:31 p.m.

FORMAT: Text only

SIZE: 166 Bytes

HITS: 219

  1. <?php
  2. $a1=array("a"=>"red","b"=>"green","c"=>"blue");
  3. $a2=array("a"=>"red","c"=>"blue","d"=>"pink");
  4. $result=array_intersect_key($a1,$a2);
  5. print_r($result);
  6. ?>

comments powered by Disqus