summaryrefslogtreecommitdiff
path: root/tests/classes/arrayobject_001.phpt
blob: b75f8c7ab3cc72fa8e1470204b298ab8ab3b9692 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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