unset_cv07.phpt 330 B

123456789101112131415161718
  1. --TEST--
  2. unset() CV 7 (indirect unset() of global variable in import_request_variables())
  3. --SKIPIF--
  4. <?php if(PHP_VERSION_ID >= 50399){ die('skip not needed anymore without register_globals'); } ?>
  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