如何在PHP中使用数组创建嵌套数组

时间:2013-06-19 10:37:56

标签: php arrays nested iteration

说,我们有一个数组:array(1,2,3,4,...) 我想将其转换为:

array(
    1=>array(
        2=>array(
            3=>array(
                4=>array()
            )
        )
    )
)

有人可以帮忙吗? 感谢

编辑使用迭代解决方案会很好。

5 个答案:

答案 0 :(得分:8)

$x = count($array) - 1;
$temp = array();
for($i = $x; $i >= 0; $i--)
{
    $temp = array($array[$i] => $temp);
}

答案 1 :(得分:5)

你可以简单地做一个递归函数:

<?php
function nestArray($myArray)
{
    if (empty($myArray))
    {
        return array();
    }

    $firstValue = array_shift($myArray);
    return array($firstValue => nestArray($myArray));
}
?>

答案 2 :(得分:4)

好吧,尝试这样的事情:

$in  = array(1,2,3,4); // Array with incoming params
$res = array();        // Array where we will write result
$t   = &$res;          // Link to first level
foreach ($in as $k) {  // Walk through source array
  if (empty($t[$k])) { // Check if current level has required key
    $t[$k] = array();  // If does not, create empty array there
    $t = &$t[$k];      // And link to it now. So each time it is link to deepest level.
  }
}
unset($t); // Drop link to last (most deep) level
var_dump($res);
die();

输出:

array(1) {
  [1]=> array(1) {
    [2]=> array(1) {
      [3]=> array(1) {
        [4]=> array(0) {
        }
      }
    } 
  }
} 

答案 3 :(得分:3)

我认为您要创建的多维数组的语法如下所示。

$array = array(

   'array1' => array('value' => 'another_value'), 
   'array2' => array('something', 'something else'),
   'array3' => array('value', 'value')
);

这是你要找的吗?

答案 4 :(得分:0)

您也可以使用此array library仅在一行中完成该操作:

$array = Arr::setNestedElement([], '1.2.3.4', 'value');