summaryrefslogtreecommitdiff
path: root/Zend/tests/unset_cv07.phpt
blob: b7bdb7db5c9a6e2a2e9d143603b7f39c39d1d586 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
unset() CV 7 (indirect unset() of global variable in import_request_variables())
--GET--
x=2
--FILE--
<?php
$_x = "1\n";
echo $_x;
import_request_variables("g","_");
echo $_x;
echo "\nok\n";
?>
--EXPECTF--
1
2
ok