Your IP : 216.73.216.48


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