mirror of
https://github.com/php/php-src.git
synced 2024-11-28 04:14:26 +08:00
25 lines
312 B
PHP
25 lines
312 B
PHP
--TEST--
|
|
exception handler tests - 3
|
|
--FILE--
|
|
<?php
|
|
|
|
class test {
|
|
|
|
function foo () {
|
|
set_exception_handler(array($this, "bar"));
|
|
}
|
|
|
|
function bar($e) {
|
|
var_dump(get_class($e)." thrown!");
|
|
}
|
|
}
|
|
|
|
$a = new test;
|
|
$a->foo();
|
|
throw new Exception();
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
string(17) "Exception thrown!"
|