mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
33 lines
447 B
PHP
33 lines
447 B
PHP
--TEST--
|
|
Bug #29368 (The destructor is called when an exception is thrown from the constructor)
|
|
--FILE--
|
|
<?php
|
|
|
|
class Foo
|
|
{
|
|
function __construct()
|
|
{
|
|
echo __METHOD__ . "\n";
|
|
throw new Exception;
|
|
}
|
|
function __destruct()
|
|
{
|
|
echo __METHOD__ . "\n";
|
|
}
|
|
}
|
|
|
|
try
|
|
{
|
|
$bar = new Foo;
|
|
} catch(Exception $exc)
|
|
{
|
|
echo "Caught exception!\n";
|
|
}
|
|
|
|
unset($bar);
|
|
|
|
?>
|
|
--EXPECT--
|
|
Foo::__construct
|
|
Caught exception!
|