内容简介: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 类似这样的错误。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- PHP 字符串分割成数组函数 explode, str_split 内部实现
- 【图像分割】图像分割专栏栏主自述:分割,我们究竟在研究什么?
- 【图像分割模型】用BRNN做分割—ReSeg
- 语义分割:GSCNN 提高边缘和小目标的分割性能
- 语义分割领域开山之作:Google提出用神经网络搜索实现语义分割
- 【图像分割模型】BRNN下的RGB-D分割—LSTM-CF
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
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》 这本书的介绍吧!