summaryrefslogtreecommitdiff
path: root/ext/spl/tests/arrayObject_offsetExists_nullcheck.phpt
blob: e20e9918d7b7c53555632c5120cdf11c8501bee7 (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)