デモ用のコードは次のとおりです。
コードをコピー コードは次のとおりです:
class ClassOne {
function callClassOne() {
print "In Class One";
}
class ClassOneDelegator {
private $targets; function __construct() {
$ this->target[] = new ClassOne();
}
function __call($name, $args) {
foreach ($this->target as $obj) {
$ r = new ReflectionClass($obj);
if ($method = $r->getMethod($name)) {
if ($method->isPublic() && !$method ->isAbstract ()) {
return $method->invoke($obj, $args)
}
}
}
}
}
$ obj = new ClassOneDelegator ();
$obj->callClassOne();
?>
出力結果:
コードをコピーします コードは次のとおりです:
< ;?phpclass ClassOne {
function callClassOne() {
print "In Class One";
}
}
class ClassOneDelegator {
private $targets; >function addObject ($obj) {
$this->target[] = $obj;
}
function __call($name, $args) {
foreach ($this->; $ obj としてターゲット) {
$r = new ReflectionClass($obj);
if ($method = $r->getMethod($name)) {
if ($method->isPublic) () && !$method->isAbstract()) {
return $method->invoke($obj, $args)
}
}
}
}
}
$obj = new ClassOneDelegator();
$obj->addObject(new ClassOne());
?>