PHP 8.5.0 Beta 3 available for testing

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;
/* ็ปงๆ‰ฟ็š„ๆ–นๆณ• */
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 notes

up
3
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');
}
}
up
0
tom at tomwardrop dot com ยถ
15 years ago
A typical use for this exception, is in conjunction with the is_callable() function.
To Top