- var_dump: documentation ( source)
- array_shift: documentation ( source)
<?php
$array = Array
(
'3' => 10,
'2' => 2,
'5' => 'Nakiya',
);
/**
* Remove the first value from an array.
*/
function removeFirstelement($array)
{
array_shift($array);
return $array;
}
var_dump(removeFirstelement($array));