summaryrefslogtreecommitdiff
path: root/Zend/tests/bug32596.phpt
blob: 40bd70382b309d5af776eaf1fe51351fb7088926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--TEST--
Bug #32596 (Segfault/Memory Leak by getClass (etc) in __destruct)
--FILE--
<?php
class BUG {
  public $error = "please fix this thing, it wasted a nice part of my life!\n";
  static function instance() {return new BUG();}

  function __destruct()
  {
    $c=get_class($this); unset($c);
    echo get_class($this) ."\n";
    if(defined('DEBUG_'.__CLASS__)){}
    $c=get_class($this); //memory leak only
    echo $this->error;
  }
}


BUG::instance()->error;
echo "this is still executed\n";
?>
--EXPECT--
BUG
please fix this thing, it wasted a nice part of my life!
this is still executed