-=[ Mr. Bumblebee ]=-
_Indonesia_

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

--TEST--
Closure 021: Throwing exception inside lambda
--FILE--
<?php

$foo = function() {
	try {
		throw new Exception('test!');
	} catch(Exception $e) {
		throw $e;
	}
};

try {
	$foo();
} catch (Exception $e) {
	var_dump($e->getMessage());
}

?>
--EXPECT--
string(5) "test!"

Copyright © 2017 || Recoded By Mr.Bumblebee