-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/Zend/tests/
File Upload :
Current File : //usr/src/php/Zend/tests/exception_handler_005.phpt

--TEST--
exception handler tests - 5
--FILE--
<?php

set_exception_handler("foo");
set_exception_handler("foo1");

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

function foo1($e) {
	var_dump(__FUNCTION__."(): ".get_class($e)." thrown!");
}


throw new excEption();

echo "Done\n";
?>
--EXPECTF--	
string(25) "foo1(): Exception thrown!"

Copyright © 2017 || Recoded By Mr.Bumblebee