helly Tue Mar 9 12:01:23 2004 EDT Modified files: /php-src/ext/spl spl.php Log: Update http://cvs.php.net/diff.php/php-src/ext/spl/spl.php?r1=1.14&r2=1.15&ty=u Index: php-src/ext/spl/spl.php diff -u php-src/ext/spl/spl.php:1.14 php-src/ext/spl/spl.php:1.15 --- php-src/ext/spl/spl.php:1.14 Mon Mar 8 12:33:29 2004 +++ php-src/ext/spl/spl.php Tue Mar 9 12:01:21 2004 @@ -2,7 +2,7 @@ /** Standard PHP Library * - * (c) Marcus Boerger, 2003 + * (c) Marcus Boerger, 2003 - 2004 */ /** Abstract base interface that cannot be implemented alone. Instead it @@ -318,6 +318,22 @@ */ class SimpleXMLIterator extends simplexml_element implements RecursiveIterator { + /** \copydoc Iterator::rewind + */ + function rewind(); + + /** \copydoc Iterator::current + */ + function current(); + + /** \copydoc Iterator::next + */ + function next(); + + /** \copydoc Iterator::valid + */ + function valid(); + /** \return whether the current node has sub nodes. */ function hasChildren();
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php