php-src/ext/standard/tests/general_functions/bug25038.phpt

33 lines
501 B
PHP
Executable File

--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===