summaryrefslogtreecommitdiff
path: root/Zend/tests/exception_handler_001.phpt
blob: 7a85cff02124b6126cb4e5592d97eda0d4bc19f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
exception handler tests - 1
--FILE--
<?php

set_exception_handler("foo");

function foo($e) {
	var_dump(get_class($e)." thrown!");
}

class test extends Exception {
}

throw new test();

echo "Done\n";
?>
--EXPECTF--
string(12) "test thrown!"