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

?>
--EXPECTF--
bool(true)