php一个数组分割成多个数组array_chunk

栏目: PHP · 发布时间: 5年前

内容简介:php中可以用array_chunk将一个数组分隔成若干个数组。数组每3个分割一组

php中可以用array_chunk将一个数组分隔成若干个数组。

数组

$array = ['name' => 'tom', 'age' => 20, 3, 4, 5, 'a', 'b'];

每3个分割一组

$chunk_result = array_chunk($array, 3);

结果

Array
(
    [0] => Array
        (
            [0] => tom
            [1] => 20
            [2] => 3
        )

    [1] => Array
        (
            [0] => 4
            [1] => 5
            [2] => a
        )

    [2] => Array
        (
            [0] => b
        )

)

如果数量不足,则最后一个数组不一定为3个

如果需要保留键值,可以设置第三个参数为true

$chunk_result = array_chunk($array, 3, true);

结果

Array
(
    [0] => Array
        (
            [name] => tom
            [age] => 20
            [0] => 3
        )

    [1] => Array
        (
            [1] => 4
            [2] => 5
            [3] => a
        )

    [2] => Array
        (
            [4] => b
        )

)

心得

使用array_chunk比较的坑在于:如果数组过大,array_chunk很可能造成内存溢出,报:Allowed memory size of 134217728 bytes exhausted 类似这样的错误。


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Programming the Mobile Web

Programming the Mobile Web

Maximiliano Firtman / O'Reilly Media / 2010-07-23 / $44.99

* Learn how to use your existing skills to move into mobile web development * Discover the new possibilities of mobile web development, and understand its limitations * Get detailed coverage of ......一起来看看 《Programming the Mobile Web》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

html转js在线工具
html转js在线工具

html转js在线工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具