Delete the last element of an array:


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 72 Bytes

HITS: 244

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

comments powered by Disqus