A voir également:
- Array : récupérer le nom de la valeur
- Array mac - Guide
- Trying to access array offset on value of type bool - Forum PHP
- Vba collection to array ✓ - Forum VB / VBA
- Trying to access array offset on value of type bool in ✓ - Forum PHP
- Trying to access array offset on value of type bool ✓ - Forum PHP
2 réponses
gign44
Messages postés
124
Date d'inscription
dimanche 27 janvier 2008
Statut
Membre
Dernière intervention
22 octobre 2013
5
23 sept. 2013 à 09:11
23 sept. 2013 à 09:11
Bonjour,
Avec un foreach cela devrai etre possible ;)
https://www.php.net/manual/fr/control-structures.foreach.php
La clé retourne la valeur que tu veux,
Cordialement
Avec un foreach cela devrai etre possible ;)
https://www.php.net/manual/fr/control-structures.foreach.php
foreach ($variable as $key => $value){
echo $key." => ".$value."<br />;
}
La clé retourne la valeur que tu veux,
Cordialement