略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: BadFunctionCallException

2024-04-27

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.

类摘要

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;
/* 继承的方法 */
final public Exception::getMessage(): string
final public Exception::getCode(): int
final public Exception::getFile(): string
final public Exception::getLine(): int
final public Exception::getTrace(): array
final public Exception::getTraceAsString(): string
public Exception::__toString(): string
private Exception::__clone(): void
}
add a noteadd a note

User Contributed Notes 2 notes

up
3
tom at tomwardrop dot com
12 years ago
A typical use for this exception, is in conjunction with the is_callable() function.
up
0
evguenia dot chagnon at gmail dot com
5 years ago
For example:

function foo($arg) {
    $func = 'do' . $arg;
    if (!is_callable($func)) {
        throw new BadFunctionCallException('Function ' . $func . ' is not callable');
    }
}

官方地址:https://www.php.net/manual/en/class.badfunctioncallexception.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3