Answers for "display first element of array in php"

PHP
6

get first key of array php

$firstKey = array_key_first($array);
Posted by: Guest on September-11-2020
2

get first element of array php

array_values($array)[0];
Posted by: Guest on May-31-2021
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

get first element of array php

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

Code answers related to "display first element of array in php"

Browse Popular Code Answers by Language