strlen()
函數(shù)在 PHP 中主要用于獲取字符串的長度。由于數(shù)組不是字符串,因此不能直接使用 strlen()
函數(shù)來獲取數(shù)組的長度。
如果你想獲取數(shù)組的長度,可以使用 count()
函數(shù)。例如:
$array = array("apple", "banana", "cherry");
$length = count($array);
echo "The length of the array is: " . $length; // 輸出 "The length of the array is: 3"