BadFunctionCallException クラス
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
はじめに
未定義の関数をコールバックが参照したり、引数を指定しなかったりした場合にスローされる例外です。
クラス概要
/* 継承したプロパティ */
/* 継承したメソッド */
}
+add a note
User Contributed Notes 2 notes
evguenia dot chagnon at gmail dot com ¶
7 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.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google