Insert the element "blue" to an array:


SUBMITTED BY: henry1874w

DATE: June 26, 2017, 4:57 p.m.

FORMAT: Text only

SIZE: 86 Bytes

HITS: 268

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

comments powered by Disqus