Data Type Php

//array_splice() examples
$input = array("red", "green", "blue", "yellow");
array_splice($input, 2); 
array_splice($input, 1, -1);
array_splice($input, 1, count($input), "orange");
array_splice($input, -1, 1, array("black", "maroon"));
?>