unset_cv04.phpt 228 B

12345678910111213141516
  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. Warning: Undefined variable $x in %s on line %d