
| Path : /proc/thread-self/root/usr/src/php/tests/classes/ |
| Current File : //proc/thread-self/root/usr/src/php/tests/classes/arrayobject_001.phpt |
--TEST-- Ensure that ArrayObject acts like an array --FILE-- <?php $a = new ArrayObject; $a['foo'] = 'bar'; echo reset($a); echo count($a); echo current($a); ?> --EXPECT-- bar1bar