目录

PHP array_chunk() 函数

❮ PHP 数组参考

示例

将数组拆分为两个块:

<?php
$cars=array("Volvo","BMW","Toyota","Honda","Mercedes","Opel");
print_r(array_chunk($cars,2));
?>
亲自试一试 »

定义和用法

array_chunk() 函数将数组拆分为新数组块。


语法

array_chunk( array, size, preserve_key)

参数值

Parameter Description
array Required. Specifies the array to use
size Required. An integer that specifies the size of each chunk
preserve_key Optional. Possible values:
  • true - Preserves the keys
  • false - Default. Reindexes the chunk numerically

技术细节

返回值: 返回一个多维索引数组,从零开始,每个维度包含尺寸元素
PHP 版本: 4.2+


更多示例

示例

将数组拆分为两个块并保留原始键:

<?php
$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43","Harry"=>"50");
print_r(array_chunk($age,2,true));
?>
亲自试一试 »

❮ PHP 数组参考