-=[ Mr. Bumblebee ]=-
_Indonesia_

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

--TEST--
Using throw $var with anonymous function return
--FILE--
<?php 

try {
	$a = create_function('', 'return new Exception("test");');
	throw $a();
} catch (Exception $e) {
	var_dump($e->getMessage() == 'test');
}

?>
--EXPECT--
bool(true)

Copyright © 2017 || Recoded By Mr.Bumblebee