php-src/Zend/tests/bug29368.phpt

35 lines
428 B
Plaintext
Raw Normal View History

2004-10-02 14:13:35 +00:00
--TEST--
Bug #29368 (The destructor is called when an exception is thrown from the constructor)
--FILE--
2005-06-17 16:40:05 +00:00
<?php
2004-10-02 14:13:35 +00:00
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);
?>
===DONE===
--EXPECTF--
Foo::__construct
Caught exception!
===DONE===