Insert "blue" and "yellow" to the end of an array:


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 82 Bytes

HITS: 202

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

comments powered by Disqus