summaryrefslogtreecommitdiff
path: root/Zend/tests/bug32799.phpt
blob: 036d94711d5f0f2afc45861721cc7b12462e9b8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Bug #32799 (crash: calling the corresponding global var during the destruct)
--FILE--
<?php
class test{
  public $c=1;
  function __destruct (){
    if (!isset($GLOBALS['p'])) {
        echo "NULL\n";
    } else {
        $GLOBALS['p']->c++; // no warning
        print $GLOBALS['p']->c."\n"; // segfault
        var_dump($GLOBALS['p']);
    }
  }
}
$p=new test;
$p=null; //destroy the object by a new assignment (segfault)
?>
--EXPECT--
NULL