Edit report at http://bugs.php.net/bug.php?id=50579&edit=1
ID: 50579 Updated by: [email protected] Reported by: team at fazend dot com Summary: RegexIterator::REPLACE doesn't work -Status: Verified +Status: Closed Type: Bug Package: SPL related Operating System: * PHP Version: 5.*, 6 -Assigned To: +Assigned To: felipe Block user comment: N New Comment: This bug has been fixed in SVN. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2010-11-06 01:09:52] [email protected] Automatic comment from SVN on behalf of felipe Revision: http://svn.php.net/viewvc/?view=revision&revision=305121 Log: - Fixed bug #50579 (RegexIterator::REPLACE doesn't work) ------------------------------------------------------------------------ [2010-07-11 05:31:37] jinmoku at hotmail dot com In original doc (http://www.php.net/~helly/php/ext/spl/), RegexIterator::REPLACE wait for "replacement" property, but it's doesn't exist in __construct and properties. In ext/spl replacement exist as public property but not in __construct method, so I try to extends it like this public function __construct($iterator, $regex, $mode = 0, $flags = 0, $preg_flags = 0) { parent::__construct($iterator, $regex, $mode, $flags, $preg_flags); $this->replacement = '$1'; } but nothing append to :( ------------------------------------------------------------------------ [2009-12-29 15:04:20] [email protected] Seems like this thing never got finished. There aren't any tests for it either.. ------------------------------------------------------------------------ [2009-12-26 13:18:29] team at fazend dot com Description: ------------ RegexIterator::REPLACE doesn't work as it is supposed to do. The code example attached should return something, but it returns nothing. Reproduce code: --------------- $i = new RegexIterator( new ArrayIterator(array( 'test1'=>'test888', 'test2'=>'what?', 'test3'=>'test999')), '/^test(.*)/', RegexIterator::REPLACE); foreach ($i as $name=>$value) echo $name . '=>' . $value . "\n"; Expected result: ---------------- 888 999 Actual result: -------------- nothing ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/bug.php?id=50579&edit=1
