Skip to content

Instantly share code, notes, and snippets.

View PeteAUK's full-sized avatar

PeteA PeteAUK

  • Wiltshire UK
  • 21:37 (UTC +01:00)
View GitHub Profile
@snit-ram
snit-ram / RecursiveArrayIterator.php
Created September 27, 2011 02:18
Recursive Object iterator that reads protected and private properties
<?php
class ObjectIterator implements Iterator{
protected $object;
protected $reflectionObject;
protected $properties;
public function __construct( $object ){
$this->object = $object;