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