Using numeric keys - If a key exists in array2 and not in array1:


SUBMITTED BY: henry1874w

DATE: June 25, 2017, 2:43 p.m.

FORMAT: Text only

SIZE: 125 Bytes

HITS: 225

  1. <?php
  2. $a1=array("red","green","blue","yellow");
  3. $a2=array(0=>"orange",3=>"burgundy");
  4. print_r(array_replace($a1,$a2));
  5. ?>

comments powered by Disqus