/*echo "<p>";
ReflectionClass::export("reflectionclass");
echo "</p>";
*/
class ClassOne
{
function callClassOne() {
print "In Class One\n";
}
}
class ClassTwo {
function callClassTwo() {
print "In Class Two\n";
}
}
class ClassOneDelegator {
private $targets;
function __construct() {
$this->target[] = new ClassOne();
}
function addObject($obj) {
$this->target[] = $obj;
}
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->addObject(new ClassTwo());
$obj->callClassOne();
$obj->callClassTwo();
тема делегирование и рефлексии
выводит фатальную ошибку
Fatal error: Uncaught exception 'ReflectionException' with message 'Method callClassTwo does not exist' in Z:\home\localhost\www\newproject\reflections.php:28 Stack trace: #0 Z:\home\localhost\www\newproject\reflections.php(28): ReflectionClass->getMethod('callClassTwo') #1 [internal function]: ClassOneDelegator->__call('callClassTwo', Array) #2 Z:\home\localhost\www\newproject\reflections.php(39): ClassOneDelegator->callClassTwo() #3 {main} thrown in Z:\home\localhost\www\newproject\reflections.php on line 28
а надо 2 радостных сообщения. Лишних долларов вроде нету :(
помогите плз.!!…
Спустя 87 сек.
и, да, как выводить в форматированном виде (ReflectionClass::export("reflectionclass"))? т.е исходный код адекватен, с переходами между строк, а браузер всё в одну пишет.