bug24908.phpt 312 B

123456789101112131415161718
  1. --TEST--
  2. Bug #24908 (super-globals can not be used in __destruct())
  3. --INI--
  4. variables_order=GPS
  5. --FILE--
  6. <?php
  7. class test {
  8. function __construct() {
  9. if (count($_SERVER)) echo "O";
  10. }
  11. function __destruct() {
  12. if (count($_SERVER)) echo "K\n";
  13. }
  14. }
  15. $test = new test();
  16. ?>
  17. --EXPECT--
  18. OK