`
leiwuluan
  • 浏览: 694992 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类

PHP-返射代理

 
阅读更多
<?php

class Personal {
	public $name;
	public $age;
	
	function __construct() {
		echo " __construct.. \r\n";
	}
	
	public function init() {
		echo "init \r\n";
	}
}

interface Work {
 	function doWork($personal);
}
 
class Student extends Personal implements Work{
	public function doWork($personal)  {
		echo "$personal \n\r";
	}
}

 
 # 代理
 class ClassDelegator {
 	private $target;
 	
 	function __construct($targetClass) {
 		$this->target[] = new $targetClass();
 	}
 	
 	function __call($name, $args) {
 		foreach ($this->target as $obj) { 
			$r = new ReflectionClass($obj); 
			if ($method = $r->getMethod($name)) { 
				if ($method->isPublic() && !$method->isAbstract()) { 
					return call_user_func_array(array(&$obj, $name), $args);
				}
			}
		} 
 	}
 }
 
 $stu = new ClassDelegator('Student');
 $stu->doWork('1111', 'rerew');
 
 
 
 
 
 
 
 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics