|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-05-01 01:56 UTC] felipe@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 27 16:00:01 2025 UTC |
Description: ------------ There is a mistake in Line 20 of ext/spl/internal/regexiterator.inc. The class RegexIterator is implementing the abstract class FilterIterator. RegexIterator should extend FilterIterator. Reproduce code: --------------- class RegexIterator implements FilterIterator { Expected result: ---------------- class RegexIterator extends FilterIterator {