Annotation of embedaddon/php/Zend/tests/unset_cv07.phpt, revision 1.1.1.2

1.1       misho       1: --TEST--
                      2: unset() CV 7 (indirect unset() of global variable in import_request_variables())
1.1.1.2 ! misho       3: --SKIPIF--
        !             4: <?php if(PHP_VERSION_ID >= 50399){ die('skip not needed anymore without register_globals'); } ?>
1.1       misho       5: --GET--
                      6: x=2
                      7: --FILE--
                      8: <?php
                      9: $_x = "1\n";
                     10: echo $_x;
                     11: import_request_variables("g","_");
                     12: echo $_x;
                     13: echo "\nok\n";
                     14: ?>
                     15: --EXPECTF--
                     16: 1
                     17: 2
                     18: ok

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>