blob: 160601aefba0caecda2bc2600f7ad7269734afdf (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
SPL: ArrayObject::offsetExists() should return true for element containing NULL
--FILE--
<?php
$ao = new ArrayObject(array('foo' => null));
var_dump($ao->offsetExists('foo'));
?>
--EXPECT--
bool(true)
|