“Holen Sie sich Array First Element Key PHP” Code-Antworten

Holen Sie sich den ersten Schlüssel des Array -PHP

$firstKey = array_key_first($array);
butterfly

PHP Erhalten Sie den ersten Taste des Arrays

$colors = array(2=>"blue",3 =>"green",1=>"red");
$firstValue = reset($colors); //blue
$firstKey = key($colors); //2
Grepper

Holen Sie sich 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
Lokesh003Coding

Ähnliche Antworten wie “Holen Sie sich Array First Element Key PHP”

Fragen ähnlich wie “Holen Sie sich Array First Element Key PHP”

Weitere verwandte Antworten zu “Holen Sie sich Array First Element Key PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen