(PHP 4, PHP 5)
get_class_methods — 클래스 메쏘드명을 얻습니다
클래스명이나 객체 인스턴스
class_name 로 지정한 클래스에 정의되어 있는 메쏘드명의 배열을 반환합니다. 오류가 발생하면, NULL을 반환합니다.
버전 | 설명 |
---|---|
5.0.0 | PHP 5부터, 메쏘드 명을 선언한 대로(대소문자 구분) 반환합니다. PHP 4에서는 소문자였습니다. |
4.0.6 | 객체를 지정할 수 있게 되었습니다. |
Example #1 get_class_methods() 예제
<?php
class myclass {
// 생성자
function myclass()
{
return(true);
}
// 메쏘드 1
function myfunc1()
{
return(true);
}
// 메쏘드 2
function myfunc2()
{
return(true);
}
}
$class_methods = get_class_methods('myclass');
// 또는
$class_methods = get_class_methods(new myclass());
foreach ($class_methods as $method_name) {
echo "$method_name\n";
}
?>
위 예제의 출력:
myclass myfunc1 myfunc2