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

1.1     ! misho       1: --TEST--
        !             2: unset() CV 2 (unset() global variable in $GLOBALS)
        !             3: --FILE--
        !             4: <?php
        !             5: $x = "ok\n";
        !             6: echo $x;
        !             7: unset($GLOBALS["x"]);
        !             8: echo $x;
        !             9: ?>
        !            10: --EXPECTF--
        !            11: ok
        !            12: 
        !            13: Notice: Undefined variable: x in %sunset_cv02.php on line %d

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