|
method_existsChecks if the class method exists Description
bool method_exists
( mixed
$object
, string $method_name
)
Checks if the class method exists in the given
Parameters
Return Values
Returns Notes
Examples
Example #1 method_exists example
<?php The above example will output: bool(true) Example #2 Static method_exists example
<?php The above example will output: bool(true) See Also
|