Query: method_exists
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
METHOD_EXISTS(3) 1 METHOD_EXISTS(3) method_exists - Checks if the class method existsSYNOPSISbool method_exists (mixed $object, string $method_name)DESCRIPTIONChecks if the class method exists in the given $object.PARAMETERSo $object - An object instance or a class name o $method_name - The method nameRETURN VALUESReturns TRUE if the method given by $method_name has been defined for the given $object, FALSE otherwise.NOTESNote Using this function will use any registered autoloaders if the class is not already known.EXAMPLESExample #1 method_exists(3) example <?php $directory = new Directory('.'); var_dump(method_exists($directory,'read')); ?> The above example will output: bool(true) Example #2 Static method_exists(3) example <?php var_dump(method_exists('Directory','read')); ?> The above example will output: bool(true)SEE ALSOfunction_exists(3), is_callable(3), class_exists(3). PHP Documentation Group METHOD_EXISTS(3)
Related Man Pages |
---|
get_class(3) - php |
get_class_methods(3) - php |
cairo_has_current_point(3) - php |
class_alias(3) - php |
class_exists(3) - php |
Similar Topics in the Unix Linux Community |
---|
Directory exists |
While/Read |
class.EasyADSI.php 1.0 (Default branch) |