当前位置:Linux教程 - Php - 数组操作

数组操作

PHP同时支持标量数组(scalar array)和关联数组(associative arrays)。事实上,这两者之间没有任何区别。你可以使用函数list()或array()来创建数组,或者你可以明确的设置每一个数组元素的值。

$a[0] = "abc";

$a[1] = "def";

$b["foo"] = 13;

你也可以通过向数组里添加数值来创建数组。

$a[] = "hello"; // $a[2] == "hello"

$a[] = "world"; // $a[3] == "world"

数组可以通过函数 asort(), arsort(), ksort(), rsort(), sort(), uasort(), usort(), 和ksort() 来进行排序,具体使用那一个函数要根据你所想的排序的类型来定。

你可以使用cunt( )函数来统计数组中元素的个数。

你可以使用next()和prev()函数来遍历