PHP将一维数组转换为二维数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP将一维数组转换为二维数组相关的知识,希望对你有一定的参考价值。
Function to convert a one dimensional array to two dimensional with option to specify how many columns. Returns two dimensional array on success or false on fail.
<?php function array_2d($array, $col_count=2){ $result = false; $pointer = 0; for($row=0; $row < $row_count; $row++) { for($col=0; $col < $col_count; ++$col){ $result[$row][$col] = $array[$pointer]; $pointer++; } } } } return $result; } $result = array_2d($test, 3); ?>
以上是关于PHP将一维数组转换为二维数组的主要内容,如果未能解决你的问题,请参考以下文章
PHP二维数组转换成一维数组,一个变量多个二维数组转换成一维数组,PHP二维数组(或任意维数组)转换成一维数组的方法汇总,array_reduce(); array_walk_recursive()