mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
- MFH Fix #41109: recursiveiterator.inc says 'implements' Iterator instead of 'extends'
This commit is contained in:
parent
c60eee7046
commit
170af7e861
2
NEWS
2
NEWS
@ -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)
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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
|
||||
*
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user