PHP에서 동적 클래스 메서드 호출 PHP에 대해 동일한 클래스에서 동적으로 메소드를 호출하는 방법이 있습니까? 구문이 맞지 않지만 다음과 비슷한 작업을 수행하려고합니다. $this->{$methodName}($arg1, $arg2, $arg3); 이를 수행하는 방법은 여러 가지가 있습니다. $this->{$methodName}($arg1, $arg2, $arg3); $this->$methodName($arg1, $arg2, $arg3); call_user_func_array(array($this, $methodName), array($arg1, $arg2, $arg3)); 리플렉션 API http://php.net/manual/en/class.reflection.php를 사용할 수도 있습니다 . 중괄호..