【前言】
? ? ? 本文主要讲解PHP的数组相关知识点。对于PHP相关基础知识我在前面文章PHP基础教程详解里已经做过总结
?
【概论】
? ?在 PHP 中, array() 函数用于创建数组,而数组有三种类型:
①索引数组 - 带有数字索引的数组
②关联数组 - 带有指定键的数组
③多维数组 - 包含一个或多个数组的数组
?
【列表】
(1)索引数组
? ? ? ? ?1. 创建;2. 遍历
(2)关联数组
(3)多维数组
(4)获取数组长度
? ?
?
?
?
【主体】
(1)索引数组
? ?1. 创建(2种方式):
? ? ?①自动分配索引
class="php" name="code">$array = array("one","two","three")? ? ?②手动分配索引
$array[0] = "one"; $array[1] = "two"; $array[2] = "three";
? ? 2. 遍历
? ? ? 如需遍历并输出索引数组的所有值,可以使用 for 循环:
$array[0] = "one"; $array[1] = "two"; $array[2] = "three"; $arrLength=count($array); for($x=0;$x<$arrLength;$x++) { echo $array[$x]."<br>"; }
?
?
?
?
?
先写到这里,稍后继续?
.