summaryrefslogtreecommitdiff
path: root/Zend/tests/unset_cv10.phpt
blob: 335463b0ca8a9fd92c90cc2f781f1bfce695347e (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

Notice: Undefined variable: x in %sunset_cv10.php on line %d
ok