-5
我想了解如何製作一個簡單的多維數組來使用它來製作一個消耗性樹。那裏需要有一些孩子/父母。如何使用PHP爲可擴展樹創建3,4級陣列?
我想了解如何製作一個簡單的多維數組來使用它來製作一個消耗性樹。那裏需要有一些孩子/父母。如何使用PHP爲可擴展樹創建3,4級陣列?
我不知道如果我得到你想要的東西,但在這裏是如何讓一個多維數組:
$array = array(
array(1,4,3,2),
array("These are all strings","I'm a string","Me too!"),
//Those two were just 2-dimensional, here is 3-dimensional:
array(array("This","is","3-dimensional"),"2-dimensional")
);
看一看[array_walk_recursive()](http://php.net/ manual/en/function.array-walk-recursive.php) – Ohgodwhy
歡迎來到SO。看看[幫助中心](http://stackoverflow.com/help/asking),特別是[如何提出一個好問題](http://stackoverflow.com/help/how-to-ask)。這包括你正在努力實現的一個具體例子,最好是你迄今爲止嘗試過的例子。質量好的問題將使我們能夠提供高質量的答案! –