From:             afuzaylov at mlgpro dot com
Operating system: linux
PHP version:      5.2.1
PHP Bug Type:     Class/Object related
Bug description:  __destruct() does not destroy vars $var

Description:
------------
I have a class that has __destruct() in there.

When I call the $process->__destruct(), shouldn't it destroy the whole
class, all the functions and variables associated with it and all the com
objects?

Reproduce code:
---------------
class CProcess {
  var $fsize;

  function __construct($fsize) {
    $this->$fsize = $fsize;
  }

  function __destruct() {
  }
}

$process = new CProcess(15);

$process->__destruct();

Expected result:
----------------
All the vars should be destroyed.

Actual result:
--------------
The vars stay in memory

-- 
Edit bug report at http://bugs.php.net/?id=40511&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=40511&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=40511&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=40511&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=40511&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=40511&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=40511&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=40511&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=40511&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=40511&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=40511&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=40511&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=40511&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=40511&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=40511&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=40511&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=40511&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=40511&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=40511&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=40511&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=40511&r=mysqlcfg

Reply via email to