|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-07-29 22:01 UTC] deadman_great at mail dot ru
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 00:00:01 2025 UTC |
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]