BadFunctionCallException 类

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

简介

如果回调引用了未定义的函数或缺少某些参数,则抛出此异常。

类概要

class BadFunctionCallException extends LogicException {
/* 继承的属性 */
protected string $message = "";
private string $string = "";
protected int $code;
protected string $file = "";
protected int $line;
private array $trace = [];
private ?Throwable $previous = null;
/* 继承的方法 */
public Exception::__construct(string $message = "", int $code = 0, ?Throwable $previous = null)
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
}
添加注释

用户贡献的注释 2 个注释

evguenia dot chagnon at gmail dot com
7 年前
例如

function foo($arg) {
$func = 'do' . $arg;
if (!is_callable($func)) {
throw new BadFunctionCallException('Function ' . $func . ' is not callable');
}
}
tom at tomwardrop dot com
14 年前
此异常的典型用法是与 is_callable() 函数结合使用。
To Top