-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/ext/standard/tests/general_functions/
File Upload :
Current File : //usr/src/php/ext/standard/tests/general_functions/bug25038.phpt

--TEST--
Bug #25038 (call_user_func issues warning if function throws exception)
--FILE--
<?php

function bar($x='no argument')
{
    throw new Exception("This is an exception from bar({$x}).");
}
try
{
	bar('first try');
}
catch (Exception $e)
{
	print $e->getMessage()."\n";
}
try
{
	call_user_func('bar','second try');
}
catch (Exception $e)
{
	print $e->getMessage()."\n";
}

?>
===DONE===
--EXPECT--
This is an exception from bar(first try).
This is an exception from bar(second try).
===DONE===

Copyright © 2017 || Recoded By Mr.Bumblebee