summaryrefslogtreecommitdiff
path: root/Zend/tests/unset_cv10.phpt
blob: c62b8ae57a43a4a0ee9731a7a1b0d081e713c8c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
unset() CV 10 (unset() of global variable in ArrayObject::offsetUnset($GLOBALS))
--FILE--
<?php
$a = new ArrayObject($GLOBALS);
$x = "ok\n";
echo $x;
$a->offsetUnset('x');
echo $x;
echo "ok\n";
?>
--EXPECTF--
ok

Warning: Undefined variable $x in %s on line %d
ok