File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests / bug32596.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:47:52 2012 UTC (13 years ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

--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


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