我用call_user_func调用的函数应该返回FALSE.那么如果可调用无效,我如何检测错误?
(旁注:为什么他们没有抛出异常而不是返回错误代码?或者有没有办法“捕获”错误?我有一个错误句柄.我应该为它抛出异常吗?)
如果要检查要调用的函数或方法是否确实存在,可以在调用
原文链接:https://www.f2er.com/php/130419.htmlcall_user_func
之前使用
is_callable
.您可以将整个事物包装在函数中以便于重用:
function call_uf($fn) { if(is_callable($fn)) { return call_user_func($fn); } else { throw new Exception("$fn is not callable"); } }
您在评论中询问了PHP为什么会引发错误而不是使用异常.我认为这是因为异常仅在PHP5中引入,因此大多数PHP函数都依赖于错误报告.似乎有一种解决方法,正如the manual所示:
Internal PHP functions mainly use 07003,only modern 07004 extensions use exceptions. However,errors can be simply translated to exceptions with 07005.