A typical use for this exception, is in conjunction with the is_callable() function.
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
Lanza una excepción si la llamada de retorno hace referencia a una función no definida o faltan algunos de los argumentos.
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');
}
}