将数组拆分为两个块:
<?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:
|
返回值: | 返回一个多维索引数组,从零开始,每个维度包含尺寸元素 |
---|---|
PHP 版本: | 4.2+ |
将数组拆分为两个块并保留原始键:
<?php
$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43","Harry"=>"50");
print_r(array_chunk($age,2,true));
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!