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를 사용할 수도 있습니다 .
답변
중괄호를 생략하십시오.
$this->$methodName($arg1, $arg2, $arg3);
답변
PHP에서 오버로딩을 사용할 수 있습니다 :
오버로딩
class Test {
private $name;
public function __call($name, $arguments) {
echo 'Method Name:' . $name . ' Arguments:' . implode(',', $arguments);
//do a get
if (preg_match('/^get_(.+)/', $name, $matches)) {
$var_name = $matches[1];
return $this->$var_name ? $this->$var_name : $arguments[0];
}
//do a set
if (preg_match('/^set_(.+)/', $name, $matches)) {
$var_name = $matches[1];
$this->$var_name = $arguments[0];
}
}
}
$obj = new Test();
$obj->set_name('Any String'); //Echo:Method Name: set_name Arguments:Any String
echo $obj->get_name();//Echo:Method Name: get_name Arguments:
//return: Any String
답변
또한 사용할 수 있습니다 call_user_func()
및call_user_func_array()
답변
PHP의 클래스 내에서 작업하는 경우 PHP5에서 오버로드 된 __call 함수를 사용하는 것이 좋습니다. 여기 에서 참조를 찾을 수 있습니다 .
기본적으로 __call은 OO PHP5의 변수에 대해 __set 및 __get이 수행하는 작업을 동적 함수에 대해 수행합니다.
답변
수년이 지난 후에도 여전히 유효합니다! 사용자 정의 콘텐츠 인 경우 $ methodName을 잘라야합니다. $ this-> $ methodName에 선행 공백이 있음을 알 때까지 작동하지 못했습니다.
답변
나의 경우에는.
$response = $client->{$this->requestFunc}($this->requestMsg);
PHP SOAP 사용.