Rumah > Artikel > pembangunan bahagian belakang > php count函数怎么用
php count函数用于返回数组中元素的数目,其语法是count(array,mode),参数array必需,指规定要计数的数组。
php count函数怎么用?
定义和用法
count() 函数返回数组中元素的数目。
语法
count(array,mode);
参数
array 必需。规定要计数的数组。
mode 可选。规定函数的模式。可能的值:
0 - 默认。不计算多维数组中的所有元素。
1 - 递归地计算数组中元素的数目(计算多维数组中的所有元素)。
返回值: 返回数组中元素的数目。
PHP 版本: 4+
更新日志: mode 参数是在 PHP 4.2 中新增的。
实例 1
递归地计算数组中元素的数目:
<?php $cars=array ( "Volvo"=>array ( "XC60", "XC90" ), "BMW"=>array ( "X3", "X5" ), "Toyota"=>array ( "Highlander" ) ); echo "Normal count: " . count($cars)."<br>"; echo "Recursive count: " . count($cars,1); ?>
输出:
Normal count: 3 Recursive count: 8
实例 2
返回数组中元素的数目:
<?php $cars=array("Volvo","BMW","Toyota"); echo count($cars); ?>
输出:
3
Atas ialah kandungan terperinci php count函数怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!