2

我正在做一个项目,我想尝试“延迟加载”对象。

我使用 Magic Method __call($name, $arguments) 设置了一个简单的类。

我想要做的是传递 $arguments,而不是作为一个数组,而是作为一个变量列表:

public function __call($name, $arguments)
{
    // Include the required file, it should probably include some error
    // checking
    require_once(PLUGIN_PATH . '/helpers/' . $name . '.php');

    // Construct the class name
    $class = '\helpers\\' . $name;    

    $this->$name = call_user_func($class.'::factory', $arguments);

}

但是,在上面实际调用的方法中, $arguments 作为数组而不是单个变量 EG 传递

public function __construct($one, $two = null)
{
    var_dump($one);
    var_dump($two);
}
static public function factory($one, $two = null)
{
    return new self($one, $two);
}

回报:

array
  0 => string '1' (length=1)
  1 => string '2' (length=1)

null

这有意义吗,有人知道如何实现我想要的吗?

4

1 回答 1

3

尝试:

$this->$name = call_user_func_array($class.'::factory', $arguments);

代替:

$this->$name = call_user_func($class.'::factory', $arguments);
于 2013-10-29T11:36:42.477 回答