[PHP] Re: RecursiveIteratorIterator för PHP 5.0 .5 Win32

2005-10-01 Thread Erik Franzén
Of course you are right. I was fooled by this page: http://www.wiki.cc/php/RecursiveIterator class RecursiveArrayIterator extends ArrayIterator implements RecursiveIteratorIterator { function hasChildren() { return is_array($this->current()); } function getChildren()

[PHP] Re: RecursiveIteratorIterator för PHP 5.0 .5 Win32

2005-10-01 Thread Oliver Grätz
Erik Franzén schrieb: > Fatal error: CMAES_DomIterator cannot implement > RecursiveIteratorIterator - it is not an interface ... > > Does not PHP 5.0.5 support the RecursiveIteratorIterator Interface? No, it doesn't. Like it tells you: RecursiveItraorIterator is no an interface. It's a class. Yo