创建一个嵌套的php数组元素

时间:2018-09-19 22:17:27

标签: php arrays nested

我正在尝试创建一个要嵌套的php数组元素。

例如:

我有这个数组:

array(3) {
  [0]=>
  string(9) "Example 1"
  [1]=>
  string(9) "Example 2"
  [2]=>
  string(9) "Example 3"
}

我希望输出像

array(1) {
      [0]=>
      string(9) "Example 1"
            array(1) {
              [0]=>
              string(9) "Example 2"
                  array(1) {
                    [0]=>
                    string(9) "Example 3"
                    }

我尝试了foreach(),但没有成功。有人能帮我吗?

谢谢。

1 个答案:

答案 0 :(得分:1)

        $array = array("Example 1","Example 2","Example 3");



        $x = count($array) - 1;
        $temp = array();
        for($i = $x; $i >= 0; $i--)
        {
            $temp = array($array[$i] => $temp);
        }
        echo'<pre>';
        print_r($temp);

    Array
(
    [Example 1] => Array
        (
            [Example 2] => Array
                (
                    [Example 3] => Array
                        (
                        )

                )

        )

)