球員我想要做這種循環。自動Foreach所有的嵌套循環
$first_ex =
array(
'1st' => array(
'1.1' => 'value1',
'1.2' => 'value2'
// and so on...
)
);
$second_ex =
array(
'1st' => array(
'1.1' => array(
1.1.1 => 'value'
// so on...
)
'1.2' => array(
1.2.1 => 'value'
// so on...
)
)
);
截至目前我只能做數組的數組,但我怎樣才能使一個代碼,它會自動處理所有嵌套的數組,不管有多少嵌套的數組都在那裏。
[注]它不回答我的問題。
的可能的複製[什麼是PHP中的遞歸函數?(http://stackoverflow.com/questions/2648968/what-is-a-recursive-function-in-php) – Naruto
退房[RecursiveIteratorIterator](http://php.net/manual/en/class.recursiveiteratoriterator.php) – bitWorking
如何將此標記爲已解決? – googol8080