PHP中的dynamic类方法调用

有没有办法dynamic调用同一个类中的方法为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)); 

你甚至可以使用reflectionAPI 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的类中工作,那么我build议在PHP5中使用重载的__call函数。 你可以在这里find参考。

基本上__call为dynamic函数做什么__set和__get为PHP OO中的variables做了什么。

在我的情况。

 $response = $client->{$this->requestFunc}($this->requestMsg); 

使用PHP SOAP。

您可以使用闭包将方法存储在单个variables中:

 class test{ function echo_this($text){ echo $text; } function get_method($method){ $object = $this; return function() use($object, $method){ $args = func_get_args(); return call_user_func_array(array($object, $method), $args); }; } } $test = new test(); $echo = $test->get_method('echo_this'); $echo('Hello'); //Output is "Hello" 

编辑:我编辑了代码,现在它与PHP 5.3兼容。 另一个例子

这些年来仍然有效! 如果是用户定义的内容,请确保您修剪$ methodName。 我无法得到$ this – > $ methodName的工作,直到我发现它有一个领先的空间。