Récupérer la première clé d'un array en PHP
En PHP il n'existe aucune fonction qui permette de récupérer la première clé d'un tableau (tableau indexé ou tableau associatif, peu importe).
Mais il est possible de s'en sortir très facilement en combinant les fonctions array_keys
et array_shift
(qui dépile le premier élément d'un tableau) :
Dans un tout autre contexte, cet article est très intéressant : télécharger excel gratuitement.
$lang = array( 'fr_FR' => 'Français - France', 'fr_CA' => 'Français - Canada', 'fr_BE' => 'Français - Belgique', 'fr_CH' => 'Français - Suisse', 'en_US' => 'English - United States' ); $firstKey = array_shift(array_keys($lang)); echo $firstKey; // fr_FR
Allez donc jeter un oeil sur cette page : créer un feu d'artifice.
ça ne fonctionnnnnne paaaaaaaaaaaaas !
$firstLang=$keysLang[0];