I posted a bit earlier and did some other tests and now i have a VERY simple question... check the following code :

=======================================

class test {
        public function __construct(){
                echo 'Building<br>';
        }
        public function __destruct(){
                echo 'Destroying<br>';
        }
}

echo 'Will build<br>';
$mytest = new test();
echo 'Finished building<br>';

echo 'Unseting<br>';
unset($mytest);
echo 'Unset complete<br>';

=======================================

Althought you may think this will give the following output:

Will build
Building
Finished building
Unseting
Destroying
Unset complete

Instead it outputs the following:

Will build
Building
Destroying
Finished building
Unseting
Destroying
Unset complete

Notice the "Destroying" right after the building? Is that normal behavior, i just updated to PHP 5.1.4 for windows and IMO its not normal, can anyone test this on PHP 5 for linux see if it's only a windows issue!!!!

This is really important thanks

Math

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to