Annotation of embedaddon/php/Zend/tests/unset_cv04.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: unset() CV 4 (unset() local variable in included file)
                      3: --FILE--
                      4: <?php
                      5: function f() {
                      6:   $x = "ok\n";
                      7:   echo $x;
                      8:   include "unset.inc";
                      9:   echo $x;
                     10: }
                     11: f();
                     12: ?>
                     13: --EXPECTF--
                     14: ok
                     15: 
                     16: Notice: Undefined variable: x in %sunset_cv04.php on line %d

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