If a key from array1 exists in array2, and if the key only exists in array1:


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 118 Bytes

HITS: 309

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

comments powered by Disqus