1.php支持两种数组:索引数组(indexed array)和关联数组(associative array),前者使用数字作为键,后者使用字符串作为键。
2.遍历索引数组
2.1 for循环语句
2.2 while循环语句
2.3 do…while循环语句
2.4 foreach语句
2.5使用list()
list()只能用于下标从0开始的索引数组,语法格式如下:
void list(mixed $var, mixed $…)
A programmer’s note boke for work and life
1.php支持两种数组:索引数组(indexed array)和关联数组(associative array),前者使用数字作为键,后者使用字符串作为键。
2.遍历索引数组
2.1 for循环语句
2.2 while循环语句
2.3 do…while循环语句
2.4 foreach语句
2.5使用list()
list()只能用于下标从0开始的索引数组,语法格式如下:
void list(mixed $var, mixed $…)