Source Code:
(back to article)
<?php $array = [3 => "Apple", 5 => "Ball", 11 => "Cat"]; echo array_values($array)[0]; // Outputs: Apple ?>
Result:
Report an issue