mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
19 lines
289 B
PHP
19 lines
289 B
PHP
--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
|