ID: 28840 Updated by: [EMAIL PROTECTED] Reported By: rodolfo at rodsoft dot org -Status: Open +Status: Closed Bug Type: Zend Engine 2 problem Operating System: * PHP Version: 5.0.3 Assigned To: helly New Comment:
This bug has been fixed in CVS. Snapshots of the sources are packaged every three hours; this change will be in the next snapshot. You can grab the snapshot at http://snaps.php.net/. Thank you for the report, and for helping us make PHP better. Previous Comments: ------------------------------------------------------------------------ [2005-03-06 20:30:00] [EMAIL PROTECTED] Please try using this CVS snapshot: http://snaps.php.net/php5-latest.tar.gz For Windows: http://snaps.php.net/win32/php5-win32-latest.zip ------------------------------------------------------------------------ [2005-02-13 10:15:01] ryan at wonko dot com I'm experiencing this problem with a class that extends DOMDocument using PHP 5.0.3 under both Windows XP and FreeBSD 5.3. ------------------------------------------------------------------------ [2004-12-01 23:54:16] tfraser at jeffsys dot net As of 5.0.2, the same problem occurs. ------------------------------------------------------------------------ [2004-06-19 02:22:55] rodolfo at rodsoft dot org Description: ------------ When you create a class by extending mysqli or mysqli_result and add a destructor to it (to automatically call mysqli::close, for instance), it doesn't get called when the object gets out of scope. Reproduce code: --------------- <? class test extends mysqli { function __construct() { echo "born\n"; } function __destruct() { echo "died\n"; } } $test = new test; unset($test); ?> Expected result: ---------------- born died Actual result: -------------- born ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=28840&edit=1