TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
555 B
35 lines
555 B
--TEST--
|
|
Setting previous exception
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
try {
|
|
throw new Exception("First", 1, new Exception("Another", 0, NULL));
|
|
}
|
|
catch (Exception $e) {
|
|
throw new Exception("Second", 2, $e);
|
|
}
|
|
}
|
|
catch (Exception $e) {
|
|
throw new Exception("Third", 3, $e);
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Exception: Another in %s
|
|
Stack trace:
|
|
#0 {main}
|
|
|
|
Next Exception: First in %s
|
|
Stack trace:
|
|
#0 {main}
|
|
|
|
Next Exception: Second in %s
|
|
Stack trace:
|
|
#0 {main}
|
|
|
|
Next Exception: Third in %s
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s
|
|
|