diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | ext/spl/internal/recursiveiterator.inc | 2 | ||||
-rwxr-xr-x | ext/spl/internal/seekableiterator.inc | 2 | ||||
-rwxr-xr-x | ext/spl/spl.php | 4 |
4 files changed, 6 insertions, 4 deletions
@@ -1,6 +1,8 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? Apr 2007, PHP 5.2.2RC2 +- Fixed bug #41109 (recursiveiterator.inc says "implements" Iterator instead of + "extends"). (Marcus) - Fixed bug #41093 (magic_quotes_gpc ignores first arrays keys). (Arpad, Ilia) - Fixed bug #41083 (mysql_ping() requires MYSQL_OPT_RECONNECT to be set since MySQL 5.0.13). (xiaojb at gmail dot com, Tony) diff --git a/ext/spl/internal/recursiveiterator.inc b/ext/spl/internal/recursiveiterator.inc index 640be25a13..716f54804b 100755 --- a/ext/spl/internal/recursiveiterator.inc +++ b/ext/spl/internal/recursiveiterator.inc @@ -15,7 +15,7 @@ * @version 1.0 * @since PHP 5.0 */ -interface RecursiveIterator implements Iterator +interface RecursiveIterator extends Iterator { /** @return whether the current element has children */ diff --git a/ext/spl/internal/seekableiterator.inc b/ext/spl/internal/seekableiterator.inc index c00d264a95..b0a012e54b 100755 --- a/ext/spl/internal/seekableiterator.inc +++ b/ext/spl/internal/seekableiterator.inc @@ -18,7 +18,7 @@ * to seek on an iterator LimitIterator can use this to efficiently rewind * to offset. */ -interface SeekableIterator implements Iterator +interface SeekableIterator extends Iterator { /** Seek to an absolute position * diff --git a/ext/spl/spl.php b/ext/spl/spl.php index 61261a0091..1dd82ca998 100755 --- a/ext/spl/spl.php +++ b/ext/spl/spl.php @@ -32,12 +32,12 @@ * * SPL offers some advanced iterator algorithms: * - * - interface RecursiveIterator implements Iterator + * - interface RecursiveIterator extends Iterator * - interface OuterIterator extends Iterator * - class RecursiveIteratorIterator implements OuterIterator * - abstract class FilterIterator implements OuterIterator * - class ParentIterator extends FilterIterator implements RecursiveIterator - * - interface SeekableIterator implements Iterator + * - interface SeekableIterator extends Iterator * - class LimitIterator implements OuterIterator * - class CachingIterator implements OuterIterator * - class RecursiveCachingIterator extends CachingIterator implements RecursiveIterator |