Annotation of embedaddon/php/tests/lang/bug24908.phpt, revision 1.1

1.1     ! misho       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

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