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


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 231 Bytes

HITS: 274

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

comments powered by Disqus