get_class_method
(PHP 4, PHP 5)
get_class_methods -- 返回由類的方法名組成的數組
說明
array get_class_methods ( mixed class_name )
返回由 class_name 指定的類中定義的方法名所組成的數組。如果出錯,則返回 NULL。
get_class_methods() 示例
<?php
class myclass {
// constructor
function myclass()
{
return(true);
}
// method 1
function myfunc1()
{
return(true);
}
// method 2
function myfunc2()
{
return(true);
}
}
$class_methods = get_class_methods('myclass');
// or
$class_methods = get_class_methods(new myclass());
foreach ($class_methods as $method_name) {
echo "$method_name\n";
}
?>
上例將輸出:
myclass
myfunc1
myfunc2