summaryrefslogtreecommitdiff
path: root/Zend/tests/unset_cv12.phpt
blob: a22b13dea7e3f33b458f0ec62368536fe2afe056 (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
unset() CV 12 (unset() in indirect called function)
--FILE--
<?php
$x = 1;
function foo() {unset($GLOBALS["x"]);}
call_user_func("foo");
echo "ok\n";
?>
--EXPECT--
ok