php-src/Zend/tests/bug29368.phpt
2020-02-03 22:52:20 +01:00

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!