get first value of array php code example
Example 1: get first key of array php
$firstKey = array_key_first($array);
Example 2: php array get first x elements
$sliced_array = array_slice($array, 0, 5)
Example 3: first item in array php
$firstItem = array_shift($array);
Example 4: php get first element of array
$colors = array(2=>"blue",3 =>"green",1=>"red");
$firstValue = reset($colors);
$firstKey = key($colors);
Example 5: php get first element of array
<?php
$stack = array("orange", "banana", "apple", "raspberry");
$fruit = array_shift($stack);
print_r($stack);
?>