Skip to content

Instantly share code, notes, and snippets.

@lstrojny
Created January 17, 2013 17:32
Show Gist options
  • Save lstrojny/4557782 to your computer and use it in GitHub Desktop.
Save lstrojny/4557782 to your computer and use it in GitHub Desktop.
<?php
$list = array(new stdClass(), array(new stdClass()));
$it = new RecursiveIteratorIterator(new RecursiveArrayIterator($list));
foreach ($it as $e) {
var_dump($e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment