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

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