Compare the keys and values of two arrays, and return the differences:


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 178 Bytes

HITS: 285

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

comments powered by Disqus