PHP sizeof() 函数

PHP sizeof() 函数

返回 PHP Array 参考手册


示例

返回数组中元素的数目:

<?php
$cars=array("Volvo","BMW","Toyota");
echo sizeof($cars);
?>

执行结果

3

定义和用法

sizeof() 函数返回数组中元素的数目。

sizeof() 函数是 count() 函数的别名。

语法

sizeof(array,mode);
参数 描述
array 必需。规定要计数的数组。
mode 可选。规定函数的模式。可能的值:
0 - 默认。不计算多维数组中的所有元素。
1 - 递归地计算数组中元素的数目(计算多维数组中的所有元素)。

技术细节

  • 返回值: 返回数组中元素的数目。
  • PHP 版本: 4+

更多示例

#1 递归地计算数组中元素的数目:

<?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);
?>

执行结果

Normal count: 3
Recursive count: 8

返回 PHP Array 参考手册

查看笔记

扫码一下
查看教程更方便