返回数组中元素的数目:
<?php
$cars=array("Volvo","BMW","Toyota");echo
sizeof($cars);
?>
定义和用法
sizeof() 函数返回数组中元素的数目。
sizeof() 函数是 count() 函数的别名。
语法
sizeof(array,mode);
参数 | 描述 |
---|---|
array | 必需。规定要计数的数组。 |
mode | 可选。规定函数的模式。可能的值:
|
技术细节
返回值: | 返回数组中元素的数目。 |
---|---|
PHP 版本: | 4+ |
更多实例
递归地计算数组中元素的数目:
实例 1
Run this code »<?php
$cars=array ( "Volvo"=>array (
"XC60", "XC90" ), "BMW"=>array (
"X3", "X5" ), "Toyota"=>array (
"Highlander" ) ); echo "Normal count: " .
sizeof($cars)."<br>";echo "Recursive count: " .
sizeof($cars,1);
?>
分享笔记