Comment récupérer une valeur à partir d’un tableau en PHP

Si vous souhaitez accéder à une valeur dans un tableau indexé, associatif ou multidimensionnel, vous pouvez le faire en utilisant l’index ou la clé du tableau.
 
 

Exemple :
<?php
	$langages = array("p"=>"PHP", "j"=>"Java", "a"=>"Ada", "h"=>"HTML");
 
	$nombers = array(1, 2, 3, 4, 5);
 
	// Tableau multidimensionnel 
	$school = array(
		array(
		  "name" => "Frédéric Majory",
		  "email" => "[email protected]",
		  "telephone" => "+33 01.09.94.30.12",
		  "address" => "94, rue Gustave Eiffel",
		),
		array(
		  "name" => "Adorlee Miron",
		  "email" => "[email protected]",
		  "telephone" => "+33 04.97.35.65.26",
		  "address" => "32, boulevard Aristide Briand",
		),
		array(
		  "name" => "Christian Leclerc",
		  "email" => "[email protected]",
		  "telephone" => "+33 03.56.16.29.48",
		  "address" => "16, Quai des Belges",
		)
	);
 
	echo $langages["p"]. '<br />'; // Sortie : PHP
	echo $nombers[0]. '<br />';   // Sortie : 1
	echo $school[0]["name"]. '<br />';  // Sortie : Frédéric Majory
	echo $school[1]["email"]. '<br />'; // Sortie : [email protected]
?>

Sortie :

PHP
1
Frédéric Majory
[email protected]

 
QCM sur PHP

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *