Differences between array_replace() and array_replace_recursive():


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 240 Bytes

HITS: 262

  1. <?php
  2. $a1=array("a"=>array("red"),"b"=>array("green","blue"),);
  3. $a2=array("a"=>array("yellow"),"b"=>array("black"));
  4. $result=array_replace_recursive($a1,$a2);
  5. print_r($result);
  6. $result=array_replace($a1,$a2);
  7. print_r($result);
  8. ?>

comments powered by Disqus