Skip to content

Instantly share code, notes, and snippets.

@pritchard2751
pritchard2751 / recursive_array_iterator.php
Last active July 25, 2017 17:40
Recursive Iteration of a Multidimensional Array Using SPL Iterators
<?php
$nav_menu = array("Level 1" => array("Level 1 child (a)", "Level 1 child (b)"),
"Level 2" => array("Level 2 child (a)" =>
array("Level 2.1 child (a)" =>
array("Level 2.2 child (a)"),
"Level 2.1 Child (b)"
),
"Level 2 child (b)"
),