summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug28822.phpt
blob: 0cf5575367f6520ffc193bce1d6bee04c2a9f430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Bug #28822 (ArrayObject::offsetExists() works inverted)
--SKIPIF--
<?php if (!extension_loaded("spl")) print "skip"; ?>
--FILE--
<?php

$array = new ArrayObject();
$array->offsetSet('key', 'value');
var_dump($array->offsetExists('key'));
var_dump($array->offsetExists('nokey'));

?>
===DONE===
--EXPECT--
bool(true)
bool(false)
===DONE===