要获取 PHP 数组的长度,可以使用 count() 函数。以下是示例代码:```php$array = [1, 2, 3, 4, 5];$length = count($array);echo "数组的长度为: " . $length;```输出结果为:```数组的长度为: 5```