php-src/Zend/tests/exception_008.phpt

37 lines
635 B
Plaintext
Raw Normal View History

2008-07-14 05:37:27 +08:00
--TEST--
Exception in __destruct while exception is pending
--FILE--
<?php
class TestFirst
{
function __destruct() {
throw new Exception("First");
}
}
class TestSecond
{
function __destruct() {
throw new Exception("Second");
}
}
$ar = array(new TestFirst, new TestSecond);
unset($ar);
?>
===DONE===
--EXPECTF--
Fatal error: Uncaught Exception: First in %sexception_008.php:%d
2008-07-14 05:37:27 +08:00
Stack trace:
#0 %sexception_008.php(%d): TestFirst->__destruct()
#1 {main}
Next Exception: Second in %sexception_008.php:%d
2008-07-14 05:37:27 +08:00
Stack trace:
#0 %sexception_008.php(%d): TestSecond->__destruct()
#1 {main}
thrown in %sexception_008.php on line %d