ID:               32134
 Updated by:       [EMAIL PROTECTED]
 Reported By:      justinh at superglobals dot com
-Status:           Verified
+Status:           Closed
 Bug Type:         SPL related
 Operating System: *
 PHP Version:      5.0.3
 Assigned To:      helly
 New Comment:

This bug has been fixed in CVS.

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:
------------------------------------------------------------------------

[2005-02-28 17:09:53] justinh at superglobals dot com

Description:
------------
When extending the SPL ArrayIterator class and overloading the
offsetGet/offsetSet methods, it appears that neither of the overloaded
methods are called when accessing the object like an array (ie
$myObject['index'])

Reproduce code:
---------------
<?php
class myArray extends ArrayIterator
{

    public function __construct ($array = array ())
    {
        parent::__construct ($array);
    }

    public function offsetGet ($index)
    {
        echo 'offsetGet called';
        return parent::offsetGet ($index);
    }

    public function offsetSet ($index, $newval)
    {
        echo 'offsetSet called';
        return parent::offsetSet ($index, $newval);
    }

}

$myArray = new myArray ();

$myArray->offsetSet ('one', 'one');
echo $myArray->offsetGet ('one');

$myArray['two'] = 'two';
echo $myArray['two'];
?>

Expected result:
----------------
offsetSet called
offsetGet called
one
offsetSet called
offsetGet called
two

Actual result:
--------------
offsetSet called
offsetGet called
one
two


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


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

Reply via email to