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"