Answers for "php 5 get first key of array"

PHP
4

get first key of array php

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

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
0

php get first element of array

array_shift(array_values($array));
Posted by: Guest on September-28-2021

Code answers related to "php 5 get first key of array"

Browse Popular Code Answers by Language