Merge two arrays into one array:


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 97 Bytes

HITS: 239

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

comments powered by Disqus