summaryrefslogtreecommitdiff
path: root/Zend/tests/unset_cv02.phpt
blob: cb2475350c226bbdb0b85a384eb94a1982babeb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
unset() CV 2 (unset() global variable in $GLOBALS)
--FILE--
<?php
$x = "ok\n";
echo $x;
unset($GLOBALS["x"]);
echo $x;
?>
--EXPECTF--
ok

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