Maison > Article > développement back-end > Quels sont les types de tableaux en php
En php, il existe quatre types de tableaux
Tableau numérique : Tableau avec clés d'identification numériques
Tableau associatif : Un tableau avec des clés spécifiées, chaque clé est associée à une valeur
Tableau multidimensionnel : Un tableau contenant un ou plusieurs
Tableau ordinaire : Habituellement, le tableau entier ne peut pas être repris directement (apprentissage recommandé : Programmation PHP de l'entrée à la maîtrise)
<?php $person = array("父亲","儿子","女儿"); echo $person[0]; //echo出数组中第一个元素; var_dump ($person[0]); //可以用var_dump遍历出整个数组,数组后面加编号就输出哪个元素 for($i = 0;$i
Tableau de valeurs clés, est précédé de la clé et suivi de la valeur
$tu = array(‘sex’=>‘男’,‘height’=>‘170cm’,‘heavy’=>‘125’,‘name’=>‘吾志高’); var_dump($tu); //遍历数组 foreach($tu as $key =>$value) { var_dump($key.'-------'.$value); //输出键 var_dump($value); //输出值 }
état de sortie
array (size=4) ‘sex’ => string ‘男’ (length=3) ‘height’ => string ‘170cm’ (length=5) ‘heavy’ => string ‘125’ (length=3) ‘name’ => string ‘吾志高’ (length=9) D:\wamp64\www\base\array.php:18:string ‘sex-------男’ (length=13) D:\wamp64\www\base\array.php:19:string ‘男’ (length=3) D:\wamp64\www\base\array.php:18:string ‘height-------165cm’ (length=18) D:\wamp64\www\base\array.php:19:string ‘170cm’ (length=5) D:\wamp64\www\base\array.php:18:string ‘heavy-------125’ (length=15) D:\wamp64\www\base\array.php:19:string ‘125’ (length=3) D:\wamp64\www\base\array.php:18:string ‘name-------吾志高’ (lengt=20) D:\wamp64\www\base\array.php:19:string ‘吾志高’ (length=9)
tableau associatif . point-virgule à la fin du tableau
$p = [ $tu = array(‘sex’=>‘男’,‘height’=>‘170cm’,‘heavy’=>‘125’,‘name’=>‘吾志高’), $tu = array(‘sex’=>‘男’,‘height’=>‘170cm’,‘heavy’=>‘125’,‘name’=>‘吾志高’), $tu = array(‘sex’=>‘男’,‘height’=>‘170cm’,‘heavy’=>‘125’,‘name’=>‘吾志高’), $tu = array(‘sex’=>‘男’,‘height’=>‘170cm’,‘heavy’=>‘125’,‘name’=>‘吾志高’), $tu = array(‘sex’=>‘男’,‘height’=>‘170cm’,‘heavy’=>‘125’,‘name’=>‘吾志高’), ]; var_dump($p); var_dump($p[0]['sex']); //提取数组中的元素 //不能是var_dump($p[0][1]);
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!