Compare the keys of three arrays, and return the differences:


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 221 Bytes

HITS: 189

  1. <?php
  2. $a1=array("a"=>"red","b"=>"green","c"=>"blue");
  3. $a2=array("c"=>"yellow","d"=>"black","e"=>"brown");
  4. $a3=array("f"=>"green","c"=>"purple","g"=>"red");
  5. $result=array_diff_key($a1,$a2,$a3);
  6. print_r($result);
  7. ?>

comments powered by Disqus