<?php class Foo { public $foo = 'foo'; } class Set extends ArrayIterator { public $bar = 'bar'; } $array = [ new Foo(), ]; $set = new Set($array); var_dump(current($set));
You have javascript disabled. You will not be able to edit any code.