Annotation of embedaddon/php/ext/spl/tests/arrayObject_offsetExists_nullcheck.phpt, revision 1.1.1.1

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

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>