从php构造函数获取构造参数依赖

时间:2013-11-08 13:53:37

标签: php parameters constructor dependency-injection constructor-injection

使用php ReflectionClass我可以在类构造函数中找到要注入的参数来创建新实例。

$class = new ReflectionClass($this->someClass);
$constructor = $class->getConstructor();
$parameters = $constructor->getParameters();

是否还有一种获取这些参数的依赖关系的方法。 因此,如果someClass的构造函数如下所示:

public function __construct(Dependency $dependency){
    $this->dependency = $dependency;
}

我可以以某种方式从构造函数中获取类Dependency吗?

1 个答案:

答案 0 :(得分:5)

ReflectionMethod::getParameters返回ReflectionParameter个对象的数组。 ReflectionParameters有一个名为getClass的方法,它将返回有关param的typehint的信息。

示例:

<?php
interface Y { }

class X
{
    public function __construct(Y $x, $y=null)
    {

    }
}

$ref = new \ReflectionClass('X');

$c = $ref->getConstructor();
foreach ($c->getParameters() as $p) {
    var_dump($p->getClass());
}

输出:

class ReflectionClass#5 (1) {
  public $name =>
  string(1) "Y"
}
NULL

Silex的ControllerResolver有一个非常好的例子,说明如何使用它:

<?php
// $params is an array of ReflectionParameter instances
protected function doGetArguments(Request $request, $controller, array $parameters)
{
    foreach ($parameters as $param) {
        // check to see if there's a class and if there is, see if the app property
        // is the same type. If so, set the attribute on the request
        if ($param->getClass() && $param->getClass()->isInstance($this->app)) {
            $request->attributes->set($param->getName(), $this->app);

            break;
        }
    }

    return parent::doGetArguments($request, $controller, $parameters);
}