ID:               33925
 User updated by:  deadman_great at mail dot ru
 Reported By:      deadman_great at mail dot ru
-Status:           Open
+Status:           Closed
 Bug Type:         Class/Object related
 Operating System: RH Redora, core 2
 PHP Version:      5.0.4
 New Comment:

Sorry. Bug magically disappear.


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

[2005-07-29 21:56:17] deadman_great at mail dot ru

Description:
------------
Destructor called after constructor.

My configure string:

./configure --prefix=/usr/local --with-apache2=../httpd-2.0.53
--with-apxs2=/usr/local/apache2/bin/apxs --with-mod_charset
--with-mysql=/usr/local/mysql
--with-mysqli=/usr/local/mysql/bin/mysql_config --with-gd
--with-jpeg-dir=/usr/local --with-png-dir=/usr/local
--with-freetype-dir=/usr/local --with-zlib --enable-memory-limit
--enable-exif --with-ttf --enable-gd-native-ttf
--with-openssl=/usr/local --with-iconv --with-curl=/usr/local
--enable-ftp --enable-sockets --enable-maintainer-zts

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

class Engine
{
        function __construct ()
        {
                echo '[CONSTRUCTOR]';
        }
        
        function __destruct ()
        {
                echo '[DESTRUCTOR]';
        }
}

echo '[BEFORE]';
$egn = new Engine();
echo '[AFTER]';

?>

Expected result:
----------------
[BEFORE][CONSTRUCTOR][AFTER][DESTRUCTOR]

Actual result:
--------------
[BEFORE][CONSTRUCTOR][DESTRUCTOR][AFTER][DESTRUCTOR]


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


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

Reply via email to