php-src/ext/spl/tests/bug40442.phpt

13 lines
235 B
Plaintext
Raw Normal View History

2007-04-06 15:32:30 +00:00
--TEST--
2007-04-06 17:54:22 +00:00
Bug #40442 (ArrayObject::offsetExists broke in 5.2.1, works in 5.2.0)
2007-04-06 15:32:30 +00:00
--FILE--
<?php
$a = new ArrayObject();
$a->offsetSet('property', 0);
var_dump($a->offsetExists('property'));
?>
===DONE===
--EXPECT--
bool(true)
===DONE===