summaryrefslogtreecommitdiff
path: root/Zend/tests/unset_cv09.phpt
blob: 63a7eab0f2acee971a327f2092b487dc6a50b1f7 (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

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