mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
15 lines
192 B
PHP
15 lines
192 B
PHP
--TEST--
|
|
Ensure that ArrayObject acts like an array
|
|
--SKIPIF--
|
|
--FILE--
|
|
<?php
|
|
|
|
$a = new ArrayObject;
|
|
$a['foo'] = 'bar';
|
|
echo reset($a);
|
|
echo count($a);
|
|
echo current($a);
|
|
?>
|
|
--EXPECT--
|
|
bar1bar
|