I'm getting the weird output
<?php
$a = array('1000'=>1,2,3,4,'1001'=>5);
var_dump(array_reverse($a));
?>
and I'm getting the output like this:
array (size=4)
0 => int 4
1 => int 3
2 => int 5
3 => int 1
value 2 is missing. Can anyone explain the code?