因此,method_exists()
需要一个对象来查看方法是否存在。但是我想知道一个方法是否存在于同一个类中。
我有一个方法可以处理一些信息,并且可以接收一个操作,该方法运行一个方法来进一步处理该信息。我想在调用之前检查方法是否存在。我怎样才能实现它?
示例:
class Foo{
public function bar($info, $action = null){
//Process Info
$this->$action();
}
}
答案 0 :(得分:39)
您可以这样做:
class A{
public function foo(){
echo "foo";
}
public function bar(){
if(method_exists($this, 'foo')){
echo "method exists";
}else{
echo "method does not exist";
}
}
}
$obj = new A;
$obj->bar();
答案 1 :(得分:10)
使用method_exists
是正确的。但是,如果您希望符合"接口隔离原则",您将创建一个执行内省的接口,如下所示:
class A
{
public function doA()
{
if ($this instanceof X) {
$this->doX();
}
// statement
}
}
interface X
{
public function doX();
}
class B extends A implements X
{
public function doX()
{
// statement
}
}
$a = new A();
$a->doA();
// Does A::doA() only
$b = new B();
$b->doA();
// Does B::doX(), then remainder of A::doA()
答案 2 :(得分:4)
我认为最好的方法是使用__call魔法。
public function __call($name, $arguments)
{
throw new Exception("Method {$name} is not supported.");
}
是的,您可以使用method_exists($ this ...),但这是内部的PHP方式。
答案 3 :(得分:3)
mTextureView.setSurfaceTextureListener(MainActivity.this);
接受类名或对象实例作为参数。因此,您可以查看method_exists()
http://php.net/manual/en/function.method-exists.php
参数¶
物体 对象实例或类名
METHOD_NAME 方法名称