温馨提示×

php strlen能用于数组吗

PHP
小樊
81
2024-11-18 23:09:23
栏目: 编程语言

strlen() 函数在 PHP 中主要用于获取字符串的长度。由于数组不是字符串,因此不能直接使用 strlen() 函数来获取数组的长度。

如果你想获取数组的长度,可以使用 count() 函数。例如:

$array = array("apple", "banana", "cherry");
$length = count($array);
echo "The length of the array is: " . $length; // 输出 "The length of the array is: 3"

0