Home  >  Article  >  php教程  >  PHP中使用反射机制实现动态代理

PHP中使用反射机制实现动态代理

WBOY
WBOYOriginal
2016-06-21 08:57:091414browse

演示用代码如下所示

classClassOne{
  functioncallClassOne(){
    print"InClassOne";
  }
}
classClassOneDelegator{
  private$targets;
  function__construct(){
    $this->target[]=newClassOne();
  }
  function__call($name,$args){
    foreach($this->targetas$obj){
      $r=newReflectionClass($obj);
      if($method=$r->getMethod($name)){
        if($method->isPublic()&&!$method->isAbstract()){
          return$method->invoke($obj,$args);
        }
      }
    }
  }
}
$obj=newClassOneDelegator();
$obj->callClassOne();
?>

  输出结果:

  In Class One

  可见,通过代理类ClassOneDelegator来代替ClassOne类来实现他的方法。

  同样的,如下的代码也是能够运行的:

classClassOne{
  functioncallClassOne(){
    print"InClassOne";
  }
}
classClassOneDelegator{
  private$targets;
  functionaddObject($obj){
    $this->target[]=$obj;
  }
  function__call($name,$args){
    foreach($this->targetas$obj){
      $r=newReflectionClass($obj);
      if($method=$r->getMethod($name)){
        if($method->isPublic()&&!$method->isAbstract()){
          return$method->invoke($obj,$args);
        }
      }
    }
  }
}
$obj=newClassOneDelegator();
$obj->addObject(newClassOne());
$obj->callClassOne();
?>



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn