get_class_methods
Returns an array of class methods' names
Description
arrayget_class_methods
mixedclass_name
This function returns an array of method names defined for the
class specified by class_name.
In case of an error, it returns &null;
As of PHP 4.0.6, you can specify the object itself instead of
class_name. For example:
]]>
get_class_methods example
]]>
&example.outputs;
As of PHP 5, this function returns the name of the methods as they were
declared (case-sensitive). In PHP 4 they were lowercased.
See also get_class,
get_class_vars and
get_object_vars.