A typical use for this exception, is in conjunction with the is_callable() function.
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
Exceção lançada se um retorno de chamada se refere a uma função indefinida ou se alguns argumentos estão faltando.
A typical use for this exception, is in conjunction with the is_callable() function.
For example:
function foo($arg) {
$func = 'do' . $arg;
if (!is_callable($func)) {
throw new BadFunctionCallException('Function ' . $func . ' is not callable');
}
}