mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
14 lines
181 B
PHP
14 lines
181 B
PHP
--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
|