(PHP 5)
ReflectionClass::getMethods — Gets a list of methods
Gets a list of methods.
Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.
Any combination of ReflectionMethod::IS_STATIC, ReflectionMethod::IS_PUBLIC, ReflectionMethod::IS_PROTECTED, ReflectionMethod::IS_PRIVATE, ReflectionMethod::IS_ABSTRACT, ReflectionMethod::IS_FINAL.
An array of methods.
This method return an array of ReflectionMethod;
For example:
<?php
$reflection = new ReflectionClass('Test');
$aMethods = $reflection->getMethods();
var_dump($aMethods);
?>
Display:
array(2) {
[0]=> &object(ReflectionMethod)#7 (2) {
["name"]=> string(11) "__construct"
["class"]=> string(9) "Test" }
[1]=> &object(ReflectionMethod)#8 (2) {
["name"]=> string(3) "run"
["class"]=> string(9) "Test" }
}