今回は、PHP クラス リフレクションで依存関係注入を実装する手順について詳しく説明します。PHP クラス リフレクションで依存関係注入を実装するための 注意事項 は何ですか?実際のケースを見てみましょう。 PHP には完全なリフレクション API があり、クラス、インターフェイス、関数、メソッド、拡張機能をリバース エンジニアリングする機能を提供します。クラス リフレクションによって提供される機能を通じて、クラスがどのように定義されているか、クラスが持つ属性、メソッドが持つメソッド、メソッドが持つパラメーター、クラス ファイルへのパス、その他の非常に重要な情報を知ることができます。また、多くの PHP フレームワークがクラスの反映により、クラス間の依存関係を自動的に解決する依存関係注入を実装できるため、日常の開発に大きな利便性がもたらされます。 この記事では主に、クラス リフレクションを使用して依存関係の注入 (Dependency Injection) を実装する方法について説明します。PHP リフレクションのすべての API を 1 つずつ説明するわけではありません。詳細な API リファレンス情報については、公式ドキュメントを参照してください
。クラスのリフレクションと、例を通して依存関係の注入を実装する方法を見てみましょう。 次のクラスは座標系内の点を表し、横座標 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" } }
リフレクトアウト クラス内で定義されたメソッド
$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();メソッドのパラメータを反映します
$parameters = $constructor->getParameters();戻り値はReflectionParameterオブジェクトから構成される配列です。
array(2) { [0]=> object(ReflectionParameter)#3 (1) { ["name"]=> string(5) "point" } [1]=> object(ReflectionParameter)#4 (1) { ["name"]=> string(6) "radius" } }
依存関係の注入
さて、次に make という関数を書き、クラス名を make 関数に渡し、クラスのオブジェクトを返します。make では、クラスの依存関係を注入するのに役立ちます。この例では、Circle クラスのコンストラクターに Point オブジェクトを挿入するのにご協力ください。
//构建类的对象 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 クラスのオブジェクトをインスタンス化します。
$circle = make('Circle'); $area = $circle->area(); /*var_dump($circle, $area); object(Circle)#6 (2) { ["radius"]=> int(1) ["center"]=> object(Point)#11 (2) { ["x"]=> int(0) ["y"]=> int(0) } } float(3.14)*/この記事の事例を読んだ後は、このメソッドを習得したと思います。さらに興味深い情報については、他のセクションに注目してください。関連記事はPHP中国語サイトにあります! 推奨読書:
PHP はアスタリスクを使用してユーザー名携帯電話と電子メール アドレスの一部の文字を置き換えます
PHP マルチスレッド シミュレーションを実行してフラッシュ セールと注文獲得アクティビティを実装します (コード付き)
以上がPHPクラスリフレクションを使用した依存性注入を実装する手順の詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。