Ok i bir sorun var, üzgünüm ben bunu açık explaint olamaz ama kod kendi öz konuşur eğer.
i have a class which generates objects from a given class name; Say we say the class is Modules:
public function name($name)
{
$this->includeModule($name);
try
{
$module = new ReflectionClass($name);
$instance = $module->isInstantiable() ? $module->newInstance() : "Err";
$this->addDelegate($instance);
}
catch(Exception $e)
{
Modules::Name("Logger")->log($e->getMessage());
}
return $this;
}
AddDelegate Yöntemi:
protected function addDelegate($delegate)
{
$this->aDelegates[] = $delegate;
}
__ Çağrı Yöntemi
public function __call($methodName, $parameters)
{
$delegated = false;
foreach ($this->aDelegates as $delegate)
{
if(class_exists(get_class($delegate)))
{
if(method_exists($delegate,$methodName))
{
$method = new ReflectionMethod(get_class($delegate), $methodName);
$function = array($delegate, $methodName);
return call_user_func_array($function, $parameters);
}
}
}
__ Get Yöntemi
public function __get($property)
{
foreach($this->aDelegates as $delegate)
{
if ($delegate->$property !== false)
{
return $delegate->$property;
}
}
}
Bütün bu function __ set bekliyoruz gayet iyi çalışıyor
public function __set($property,$value)
{
//print_r($this->aDelegates);
foreach($this->aDelegates as $k=>$delegate)
{
//print_r($k);
//print_r($delegate);
if (property_exists($delegate, $property))
{
$delegate->$property = $value;
}
}
//$this->addDelegate($delegate);
print_r($this->aDelegates);
}
class tester
{
public function __set($name,$value)
{
self::$module->name(self::$name)->__set($name,$value);
}
}
Module::test("logger")->log("test"); // this logs, it works
echo Module::test("logger")->path; //prints /home/bla/test/ this is also correct
Ama bu gibi sınıf günlüğüne herhangi bir değer ayarlamak yakamazlar
Module::tester("logger")->path ="/home/bla/test/log/";
Sınıf logger yolu özellik public yani korumalı veya özel mülkiyet erişim onun değil bir sorun.
Nasıl bu sorunu çözebilir? Ben açık benim sorunum açıklamaya umuyoruz.
EDIT: A simple demonstration
Modules::Name("XML_Helper")->xmlVersion ="Hello"; // default is 333
$a = Modules::Name("XML_Helper")->xmlVersion; // now $a should contain "Hello"
echo $a; // prints 333
I gerekenler
Modules::Name("XML_Helper")->xmlVersion ="Hello"; // default is 333
$a = Modules::Name("XML_Helper")->xmlVersion; // now $a should contain "Hello"
echo $a; // prints Hello