如何获取PHP中数组中使用的元素总数?
在本文中,我们将讨论如何从数组中获取PHP中的元素总数。我们可以使用count()获取数组中的元素总数 和sizeof()函数。
使用count()函数: count()函数用于获取数组中元素的总数。
句法:
count(array)
参数:它接受单个参数,即作为输入数组的数组。
返回值:返回数组中元素的个数。
程序 1: PHP程序使用 count()函数对数组中的元素进行计数。
PHP
'php',
1 => 'java',
2 => 'css/html',
3 => 'python',
4 => 'c/c++'
);
// Get total elements in array
echo count( $array1);
?>
PHP
'php',
1 =>'java',
2 => 'css/html',
3 => 'python',
4 => 'c/c++'
);
// Get total elements in array
echo sizeof( $array1);
?>
输出
5
sizeof()函数: sizeof()函数用于计算数组或任何其他可计数对象中存在的元素数。
句法:
sizeof(array)
参数:它 只接受一个参数数组,即输入数组。
返回值:它返回数组中存在的元素数。
例子:
Input: array(10,20,30,50)
Output: 4
Input: array("Hello","geeks")
Output: 2
程序 2:使用 sizeof()函数计算元素数量的PHP程序。
PHP
'php',
1 =>'java',
2 => 'css/html',
3 => 'python',
4 => 'c/c++'
);
// Get total elements in array
echo sizeof( $array1);
?>
输出
5