Skip to content

Instantly share code, notes, and snippets.

@cyb3rd4d
Created July 17, 2015 13:56
Show Gist options
  • Save cyb3rd4d/0e85f1ab65ccaf96a7a6 to your computer and use it in GitHub Desktop.
Save cyb3rd4d/0e85f1ab65ccaf96a7a6 to your computer and use it in GitHub Desktop.
Recursive iterator
class MyFuckingIterator
{
public function __construct()
{
$this->data = new \RecursiveIteratorIterator(new \RecursiveArrayIterator($data));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment