ID:               35197
 Updated by:       [EMAIL PROTECTED]
 Reported By:      xmlfrance at gmail dot com
-Status:           Open
+Status:           Assigned
-Bug Type:         Scripting Engine problem
+Bug Type:         DOM XML related
 Operating System: Debian DNU/Linux
 PHP Version:      5.1.0RC4
-Assigned To:      
+Assigned To:      chregu
 New Comment:

Christian, please have a look at it.


Previous Comments:
------------------------------------------------------------------------

[2005-11-11 21:59:27] xmlfrance at gmail dot com

Description:
------------
My classes extending DOMDocument don't call the destructor.

Reproduce code:
---------------
<?php

class Foo extends DOMDocument {
     function __construct() {
          print('Construction');
     }
     function __destruct() {
          print('Destruction');
     }
}

$o = new Foo;
/* I've also tried unset($o) */

?>


Expected result:
----------------
ConstructionDestruction

Actual result:
--------------
Construction


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=35197&edit=1

Reply via email to