__destruct functions not called after catching a SoapFault exception
| Bug #42151 | __destruct functions not called after catching a SoapFault exception | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Submitted: | 2007-07-30 22:24 UTC | Modified: | 2007-08-01 10:40 UTC |
|
||||||||||
| From: | mattsch at gmail dot com | Assigned: | dmitry (profile) | |||||||||||
| Status: | Closed | Package: | SOAP related | |||||||||||
| PHP Version: | 5.2.3 | OS: | Gentoo Linux | |||||||||||
| Private report: | No | CVE-ID: | None | |||||||||||
[2007-07-30 22:24 UTC] mattsch at gmail dot com
Description:
------------
All __destruct functions of all objects in memory are not called if a SoapFault exception is thrown and caught.
Reproduce code:
---------------
<?php
class foo {
function __construct(){
$foo = new SoapClient('http://php.net/problem_file.wsdl');
}
function __destruct(){
echo 'I never get executed.' . "\n";
}
}
class bar {
function __destruct(){
echo 'I don\'t get executed either.' . "\n";
}
}
try {
$bar = new bar();
$foo = new foo();
} catch (Exception $e){
echo $e->getMessage() . "\n";
}
?>
Expected result:
----------------
SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://php.net/problem_file.wsdl'
I never get executed.
I don't get executed either.
Actual result:
--------------
SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://php.net/problem_file.wsdl'
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2007-08-01 10:40 UTC] dmitry@php.net