Answers for "php stdclass array get first element"

PHP
7

php get first element of array

$colors = array(2=>"blue",3 =>"green",1=>"red");
$firstValue = reset($colors); //blue
$firstKey = key($colors); //2
Posted by: Guest on October-30-2019
-1

php get first element of array

array_pop(array_reverse($array));
Posted by: Guest on September-21-2021

Code answers related to "php stdclass array get first element"

Browse Popular Code Answers by Language