Tableau multidi...LOGIN

Tableau multidimensionnel PHP

Les valeurs d'un tableau peuvent être un autre tableau, et les valeurs d'un autre tableau peuvent également être un tableau. De cette façon, nous pouvons créer des tableaux à deux ou trois dimensions :

Instance

<?php
// 二维数组:
$cars = array
(
    array("Volvo",100,96),
    array("BMW",60,59),
    array("Toyota",110,100)
);
?>


Exécuter l'instance»

PHP - Multidimensionnel Array

Un tableau multidimensionnel est un tableau qui contient un ou plusieurs tableaux.

Dans les tableaux multidimensionnels, chaque élément du tableau principal peut également être un tableau, et chaque élément du sous-tableau peut également être un tableau.

Exemple

Dans cet exemple, nous créons un tableau multidimensionnel avec des clés d'identification automatiquement attribuées :

Exemple

<?php 
$sites = array 
( 
    "php"=>array 
    ( 
        "php中文网", 
        "http://www.php.cn" 
    ), 
    "google"=>array 
    ( 
        "Google 搜索", 
        "http://www.google.com" 
    ), 
    "taobao"=>array 
    ( 
        "淘宝", 
        "http://www.taobao.com" 
    ) 
); 
print("<pre>"); // 格式化输出数组 
print_r($sites); 
print("</pre>"); 
?>

Le tableau ci-dessus sera affiché comme suit :

Array
(
[php] => Array
http://www.php.cn
)

[google] => Tableau
(
) [0] => Recherche Google
[1] => http://www.google.com
)

[taobao ] => Tableau
(
) [0] => Taobao
[1] => http ://www.taobao.com
)

)



Exemple 2

Essayons d'afficher une valeur dans le tableau ci-dessus :

echo $sites[ 'php'][0] . 'L'adresse est :' . $sites['php'][1];


Le code ci-dessus affichera :

L'adresse du site Web PHP chinois est :

http://www.php.cn

Exemple 3

<?php
$all = array("fruits" => array("a"=>"orange","b"=>"banana","c"=>"apple"),                                    
         "ages" => array(18, 20, 25)                                  
      );    
    echo $all["fruits"]["c"];   //输出apple    
     echo $all["ages"][0];       //输出18
?>

section suivante

<?php // 二维数组: $cars = array ( array("Volvo",100,96), array("BMW",60,59), array("Toyota",110,100) ); ?>
soumettreRéinitialiser le code
chapitredidacticiel