PHP가 클래스의 메서드 이름을 가져오는 두 가지 방법: 1. 마법 상수 "__FUNCTION__"을 사용하여 클래스의 현재 메서드 이름을 반환합니다. 2. get_class_methods() 함수를 사용하여 지정된 클래스에 있는 모든 메소드의 이름을 가져오고 모든 메소드 이름을 포함하는 배열을 반환합니다. 구문은 "get_class_methods('class name')" 또는 "get_class_methods(new class name())입니다. ".
이 튜토리얼의 운영 환경: Windows 7 시스템, PHP 버전 8.1, DELL G3 컴퓨터
클래스에서 메소드 이름을 가져오는 PHP의 두 가지 방법
방법 1: 마법 사용 상수 __FUNCTION__
__FUNCTION__
__FUNCTION__
__FUNCTION__
: 클래스의 현재 메서드 이름을 반환합니다.
<?php header('content-type:text/html;charset=utf-8'); class myclass { // constructor function myclass() { echo '成员方法名为:'.__FUNCTION__."<br>"; } // method 1 function myfunc1() { echo '成员方法名为:'.__FUNCTION__."<br>"; } // method 2 function myfunc2() { echo '成员方法名为:'.__FUNCTION__."<br>"; } } $class_methods = new myclass(); $class_methods -> myfunc1(); $class_methods -> myfunc2(); ?>
방법 2: get_class_methods() 함수 사용
get_class_methods - 클래스의 모든 메소드 이름을 가져와서 배열을 구성하면 오류가 발생하면 null이 반환됩니다.
<?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()); var_dump($class_methods); ?>PHP 비디오 튜토리얼🎜"🎜
위 내용은 PHP에서 클래스의 메소드 이름을 얻는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!