| Current Path : /hdd/hdd21/main/php/php-7.3.8/tests/classes/ |
| Current File : //hdd/hdd21/main/php/php-7.3.8/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