php-src/ext/soap/tests/bugs/bug42151.phpt

32 lines
603 B
PHP
Executable File

--TEST--
Bug #42151 __destruct functions not called after catching a SoapFault exception
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
class foo {
function __construct(){
$foo = @ new SoapClient('httpx://');
}
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";
}
echo "ok\n";
?>
--EXPECT--
SOAP-ERROR: Parsing WSDL: Couldn't load from 'httpx://'
ok
I don't get executed either.