PHP get_class_methods()函数
语法
get_method ( $class_name );
定义和用法
获取类方法的名称。返回由class_name指定的类定义的方法名数组。如果发生错误,返回NULL。
参数
序号 | 参数及描述 |
---|---|
1 | $class_name(必填) 类名。 |
返回值
它返回由class_name指定的类定义的方法名数组。如果发生错误,返回NULL。
示例
以下是使用该函数的示例 –
<?php
class HelloWorld {
function HelloWorld() {
return(true);
}
function myfunc1() {
return(true);
}
function myfunc2() {
return(true);
}
}
method = get_method('HelloWorld');method = get_method(new HelloWorld());
foreach (method asmethod_name) {
echo "$method_name \n";
}
?>
它将产生以下结果−
HelloWorld
myfunc1
myfunc2