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

10 lines
211 B
PHP

--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)