溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

PHP類的反射如何實(shí)現(xiàn)依賴注入

發(fā)布時(shí)間:2021-08-23 09:32:37 來源:億速云 閱讀:161 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹PHP類的反射如何實(shí)現(xiàn)依賴注入,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

PHP具有完整的反射 API,提供了對類、接口、函數(shù)、方法和擴(kuò)展進(jìn)行逆向工程的能力。通過類的反射提供的能力我們能夠知道類是如何被定義的,它有什么屬性、什么方法、方法都有哪些參數(shù),類文件的路徑是什么等很重要的信息。也正式因?yàn)轭惖姆瓷浜芏郟HP框架才能實(shí)現(xiàn)依賴注入自動(dòng)解決類與類之間的依賴關(guān)系,這給我們平時(shí)的開發(fā)帶來了很大的方便。 

為了更好地理解,我們通過一個(gè)例子來看類的反射,以及如何實(shí)現(xiàn)依賴注入。

下面這個(gè)類代表了坐標(biāo)系里的一個(gè)點(diǎn),有兩個(gè)屬性橫坐標(biāo)x和縱坐標(biāo)y。

/**
 * 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;
  }
}

接下來這個(gè)類代表圓形,可以看到在它的構(gòu)造函數(shù)里有一個(gè)參數(shù)是Point類的,即Circle類是依賴與Point類的。

class Circle
{
  /**
   * @var int
   */
  public $radius;//半徑

  /**
   * @var Point
   */
  public $center;//圓心點(diǎn)

  const PI = 3.14;

  public function __construct(Point $point, $radius = 1)
  {
    $this->center = $point;
    $this->radius = $radius;
  }
  
  //打印圓點(diǎn)的坐標(biāo)
  public function printCenter()
  {
    printf('center coordinate is (%d, %d)', $this->center->x, $this->center->y);
  }

  //計(jì)算圓形的面積
  public function area()
  {
    return 3.14 * pow($this->radius, 2);
  }
}

ReflectionClass

下面我們通過反射來對Circle這個(gè)類進(jìn)行反向工程。

把Circle類的名字傳遞給reflectionClass來實(shí)例化一個(gè)ReflectionClass類的對象。

$reflectionClass = new reflectionClass(Circle::class);
//返回值如下
object(ReflectionClass)#1 (1) {
 ["name"]=>
 string(6) "Circle"
}

反射出類的常量

$reflectionClass->getConstants();

返回一個(gè)由常量名稱和值構(gòu)成的關(guān)聯(lián)數(shù)組

array(1) {
 ["PI"]=>
 float(3.14)
}

通過反射獲取屬性

$reflectionClass->getProperties();

返回一個(gè)由ReflectionProperty對象構(gòu)成的數(shù)組

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對象構(gòu)成的數(shù)組

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()來單獨(dú)獲取類的構(gòu)造方法,其返回值為一個(gè)ReflectionMethod對象。

$constructor = $reflectionClass->getConstructor();

反射出方法的參數(shù)

$parameters = $constructor->getParameters();

其返回值為ReflectionParameter對象構(gòu)成的數(shù)組。

array(2) {
 [0]=>
 object(ReflectionParameter)#3 (1) {
  ["name"]=>
  string(5) "point"
 }
 [1]=>
 object(ReflectionParameter)#4 (1) {
  ["name"]=>
  string(6) "radius"
 }
}

依賴注入

好了接下來我們編寫一個(gè)名為make的函數(shù),傳遞類名稱給make函數(shù)返回類的對象,在make里它會(huì)幫我們注入類的依賴,即在本例中幫我們注入Point對象給Circle類的構(gòu)造方法。

//構(gòu)建類的對象
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 {
        //不是可選參數(shù)的為了簡單直接賦值為字符串0
        //針對構(gòu)造方法的必須參數(shù)這個(gè)情況
        //laravel是通過service provider注冊closure到IocContainer,
        //在closure里可以通過return new Class($param1, $param2)來返回類的實(shí)例
        //然后在make時(shí)回調(diào)這個(gè)closure即可解析出對象
        //具體細(xì)節(jié)我會(huì)在另一篇文章里面描述
        $dependencies[] = '0';
      }
    } else {
      //遞歸解析出依賴類的對象
      $dependencies[] = make($parameter->getClass()->name);
    }
  }

  return $dependencies;
}

定義好make方法后我們通過它來幫我們實(shí)例化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)*/

通過上面這個(gè)實(shí)例我簡單描述了一下如何利用PHP類的反射來實(shí)現(xiàn)依賴注入,Laravel的依賴注入也是通過這個(gè)思路來實(shí)現(xiàn)的,只不過設(shè)計(jì)的更精密大量地利用了閉包回調(diào)來應(yīng)對各種復(fù)雜的依賴注入。

以上是“PHP類的反射如何實(shí)現(xiàn)依賴注入”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI