php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #48272 function valid , next, current ..from subclass of FilterIterator return false
Submitted: 2009-05-14 03:39 UTC Modified: 2009-05-22 01:00 UTC
Votes:2
Avg. Score:3.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:0 (0.0%)
From: gma625 at msn dot com Assigned:
Status: No Feedback Package: SPL related
PHP Version: 5.2.6 OS: windows xp2
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: gma625 at msn dot com
New email:
PHP Version: OS:

 

 [2009-05-14 03:39 UTC] gma625 at msn dot com
Description:
------------
When extends a class with FilterIterator, the valid ,current,key, next functions can't work, until you override your function with the following codes
public function valid() {
     $this->getInnerIterator()->valid();  
}

btw, my php works version is 5.2.6, I can't found this version in the select list , so I selected 5.2.9

Reproduce code:
---------------
error_reporting ( E_ALL | E_STRICT );
$array = array ('koala', 'kangaroo', 'wombat', 'wallaby', 'emu', 'NZ' => 'kiwi', 'kookaburra', 'platypus' );

class CullingIterator extends FilterIterator {
	
	public function __construct(Iterator $it) {
		parent::__construct ( $it );
	}
	
	function accept() {
		$ittmp = $this->getInnerIterator ();
		if ($ittmp->current () == 'koala') {
			return false;
		}
		return true;
	}
}

$cull = new CullingIterator ( new ArrayIterator ( $array ) );

try {
	while ( $cull->valid () ) {
 		echo $cull->current ();
		$cull->next ();
	}
} catch ( Exception $e ) {
	$e->getTraceAsString ();
}

Expected result:
----------------
print out the array result as following
kangaroowombatwallabyemukiwikookaburraplatypus


Actual result:
--------------
print nothing, becuase when we call $cull->valid() will return false

additional information , I've also tracked this problem by the following code, 

$cull = new CullingIterator ( new ArrayIterator ( $array ) );

$it = $cull->getInnerIterator();

var_dump( $it->valid() );

and the result is bool(true), it's very strange to get this while we $cull->valid() it return false(true)

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-05-14 03:44 UTC] gma625 at msn dot com
hello, I'm the reporter of this bug, I'm sorry for making a typing mistake below, I just get up to fix this typing mistake , But I don't know how to achieve , so I post a new comment here, sorry for the inconvience again . 

mistake:

and the result is bool(true), it's very strange to get this while we
$cull->valid() it return false(true)

fix: 


and the result is bool(true), it's very strange to get this while we
$cull->valid() it return bool(false)
 [2009-05-14 12:38 UTC] jani@php.net
Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows:

  http://windows.php.net/snapshots/


 [2009-05-22 01:00 UTC] php-bugs at lists dot php dot net
No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".
 [2011-11-03 13:33 UTC] strauchdieb at gmx dot de
This bug still exists. See here for a newer bug report and a workaround: https://bugs.php.net/bug.php?id=52560
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 15:01:29 2024 UTC