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

1.1     ! misho       1: --TEST--
        !             2: unset() CV 7 (indirect unset() of global variable in import_request_variables())
        !             3: --GET--
        !             4: x=2
        !             5: --FILE--
        !             6: <?php
        !             7: $_x = "1\n";
        !             8: echo $_x;
        !             9: import_request_variables("g","_");
        !            10: echo $_x;
        !            11: echo "\nok\n";
        !            12: ?>
        !            13: --EXPECTF--
        !            14: 1
        !            15: 2
        !            16: ok

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