array_splice

array_splice??

  1. $input = array("red", "green", "blue", "yellow");
  2. $o = array_splice($input, 0, 2, array('orange'));
  3. // I want to: remove from input starting at 0, remove 2 things.
Syndicate content