ReflectionClass::hasMethod Checks if method is defined &reftitle.description; public boolReflectionClass::hasMethod stringname Checks whether a specific method is defined in a class. &reftitle.parameters; name Name of the method being checked for. &reftitle.returnvalues; &true; if it has the method, otherwise &false; &reftitle.examples; <methodname>ReflectionClass::hasMethod</methodname> example hasMethod('publicFoo')); var_dump($rc->hasMethod('protectedFoo')); var_dump($rc->hasMethod('privateFoo')); var_dump($rc->hasMethod('staticFoo')); // C should not have method bar var_dump($rc->hasMethod('bar')); // Method names are case insensitive var_dump($rc->hasMethod('PUBLICfOO')); ?> ]]> &example.outputs; &reftitle.seealso; ReflectionClass::hasConstant ReflectionClass::hasProperty