ID:               32130
 Updated by:       [EMAIL PROTECTED]
 Reported By:      joh at deworks dot net
-Status:           Open
+Status:           Assigned
 Bug Type:         SPL related
 Operating System: *
-PHP Version:      5.0.3
+PHP Version:      5CVS-2005-02-28
 Assigned To:      helly


Previous Comments:
------------------------------------------------------------------------

[2005-02-27 18:12:58] joh at deworks dot net

Description:
------------
ArrayIterator::seek() should (according to the manual:
http://www.php.net/~helly/php/ext/spl/interfaceSeekableIterator.html) 
"throw an exception if it is not possible to seek to the given
position".

ArrayIterator::seek() does not. Instead, it sets the current element to
NULL (as returned by ArrayIterator::current()).

Reproduce code:
---------------
$o = new ArrayIterator(array(1,2,3));
$o->seek(3);
var_dump($o->current());

Expected result:
----------------
Fatal error: Uncaught exception 'Exception' with message 'Could not
seek to position...' ...

Actual result:
--------------
NULL


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=32130&edit=1

Reply via email to