PHP には完全なリフレクション API があり、クラス、インターフェイス、関数、メソッド、拡張機能をリバース エンジニアリングする機能を提供します。クラス リフレクションによって提供される機能を通じて、クラスがどのように定義されているか、クラスが持つ属性、メソッドが持つメソッド、メソッドが持つパラメーター、クラス ファイルへのパス、その他の非常に重要な情報を知ることができます。多くの PHP フレームワークが依存関係注入を実装してクラス間の依存関係を自動的に解決できるのは、まさにクラス リフレクションのおかげであり、日常の開発に大きな利便性をもたらします。
この記事では、主にクラス リフレクションを使用して依存関係の挿入 (Dependency Injection) を実装する方法について説明しており、PHP Reflection のすべての API を 1 つずつ説明するわけではありません。より深く理解するために、例を通してクラス リフレクションと依存関係注入の実装方法を見てみましょう。
次のクラスは座標系内の点を表し、横座標 x と縦座標 y の 2 つの属性を持ちます。
/** * Class Point */ class Point { public $x; public $y; /** * Point constructor. * @param int $x horizontal value of point's coordinate * @param int $y vertical value of point's coordinate */ public function __construct($x = 0, $y = 0) { $this->x = $x; $this->y = $y; } }
次のクラスは円を表します。そのコンストラクターに Point クラスのパラメーターがあることがわかります。つまり、Circle クラスは Point クラスに依存しています。 。
class Circle { /** * @var int */ public $radius;//半径 /** * @var Point */ public $center;//圆心点 const PI = 3.14; public function __construct(Point $point, $radius = 1) { $this->center = $point; $this->radius = $radius; } //打印圆点的坐标 public function printCenter() { printf('center coordinate is (%d, %d)', $this->center->x, $this->center->y); } //计算圆形的面积 public function area() { return 3.14 * pow($this->radius, 2); } }
ReflectionClass
次に、リフレクションを使用して Circle クラスをリバース エンジニアリングします。 Circle クラスの名前をreflectionClass に渡し、ReflectionClass クラスのオブジェクトをインスタンス化します。
$reflectionClass = new reflectionClass(Circle::class); //返回值如下 object(ReflectionClass)#1 (1) { ["name"]=> string(6) "Circle" }
クラスの定数を反映します
$reflectionClass->getConstants();
定数名と値で構成される連想配列を返します
array(1) { ["PI"]=> float(3.14) }
リフレクションを通じてプロパティを取得します
$reflectionClass->getProperties();
ReflectionProperty オブジェクトで構成される配列を返します
array(2) { [0]=> object(ReflectionProperty)#2 (2) { ["name"]=> string(6) "radius" ["class"]=> string(6) "Circle" } [1]=> object(ReflectionProperty)#3 (2) { ["name"]=> string(6) "center" ["class"]=> string(6) "Circle" } }
で定義されたメソッドを反映しますclass
$reflectionClass->getMethods();
ReflectionMethod オブジェクトの配列を返します
array(3) { [0]=> object(ReflectionMethod)#2 (2) { ["name"]=> string(11) "__construct" ["class"]=> string(6) "Circle" } [1]=> object(ReflectionMethod)#3 (2) { ["name"]=> string(11) "printCenter" ["class"]=> string(6) "Circle" } [2]=> object(ReflectionMethod)#4 (2) { ["name"]=> string(4) "area" ["class"]=> string(6) "Circle" } }
getConstructor( )、その戻り値は ReflectionMethod オブジェクトです。
$constructor = $reflectionClass->getConstructor();
Reflection メソッドのパラメータ
$parameters = $constructor->getParameters();
戻り値は、ReflectionParameter オブジェクトで構成される配列です。
array(2) { [0]=> object(ReflectionParameter)#3 (1) { ["name"]=> string(5) "point" } [1]=> object(ReflectionParameter)#4 (1) { ["name"]=> string(6) "radius" } }
Dependency Injection
わかりました。次に、make という名前の関数を作成し、クラス名を make 関数に渡し、クラスのオブジェクトを返します。 in make ここでは、クラスの依存関係を注入するのに役立ちます。つまり、この場合は、Point オブジェクトを Circle クラスのコンストラクターに注入するのに役立ちます。
//构建类的对象 function make($className) { $reflectionClass = new ReflectionClass($className); $constructor = $reflectionClass->getConstructor(); $parameters = $constructor->getParameters(); $dependencies = getDependencies($parameters); return $reflectionClass->newInstanceArgs($dependencies); } //依赖解析 function getDependencies($parameters) { $dependencies = []; foreach($parameters as $parameter) { $dependency = $parameter->getClass(); if (is_null($dependency)) { if($parameter->isDefaultValueAvailable()) { $dependencies[] = $parameter->getDefaultValue(); } else { //不是可选参数的为了简单直接赋值为字符串0 //针对构造方法的必须参数这个情况 //laravel是通过service provider注册closure到IocContainer, //在closure里可以通过return new Class($param1, $param2)来返回类的实例 //然后在make时回调这个closure即可解析出对象 //具体细节我会在另一篇文章里面描述 $dependencies[] = '0'; } } else { //递归解析出依赖类的对象 $dependencies[] = make($parameter->getClass()->name); } } return $dependencies; }
make メソッドを定義した後、それを使用して Circle クラスのオブジェクトをインスタンス化します。上記の例では、PHP クラスのリフレクションを使用して依存性注入を実装する方法を簡単に説明しました。Laravel の依存性注入もこのアイデアによって実装されていますが、設計はより洗練されており、クロージャ コールバックを使用してさまざまな複雑な依存性注入を処理します。
推奨チュートリアル:PHP ビデオ チュートリアル
以上がPHPインタビューでリフレクティブインジェクションを実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。