|
is_callableVerify that a value can be called as a function from the current scope. Description
bool is_callable(mixed
$value , bool $syntax_only = false , string &$callable_name = null )Verify that a value is a callable. Parameters
Return Values
Returns Examples
Example #1 is_callable example
Example #2 is_callable and constructors is_callable reports constructors as not being callable.
The above example will output: bool(false) bool(false) Notes
See Also
|