Answers for "array_key_first php"

PHP
4

get first key of array php

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

php get first key 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

get array first element key php

For PHP version 7 and above

$array = array(
  	"1" => "PHP code tester Sandbox Online",  
	"foo" => "bar",
	"case" => "Random Stuff: " . rand(100,999),
	"PHP Version" => phpversion()
);
             
$firstValue = reset($colors); // PHP code tester Sandbox Online
$firstKey = key($colors); // 1
Posted by: Guest on April-13-2021

Browse Popular Code Answers by Language