-=[ Mr. Bumblebee ]=-
_Indonesia_

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

--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!"

Copyright © 2017 || Recoded By Mr.Bumblebee