The BadFunctionCallException class
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
简介
Exception thrown if a callback refers to an undefined function or if some arguments are missing.
类摘要
/* 继承的属性 */
/* 继承的方法 */
}
+添加备注
用户贡献的备注 2 notes
evguenia dot chagnon at gmail dot com ¶
8 years ago
For example:
function foo($arg) {
$func = 'do' . $arg;
if (!is_callable($func)) {
throw new BadFunctionCallException('Function ' . $func . ' is not callable');
}
}
tom at tomwardrop dot com ¶
15 years ago
A typical use for this exception, is in conjunction with the is_callable() function.
备份地址:http://www.lvesu.com/blog/php/class.badfunctioncallexception.php