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


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 141 Bytes

HITS: 240

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

comments powered by Disqus