亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何使用Laravel框架源碼解析之反射

發布時間:2021-03-08 15:46:38 來源:億速云 閱讀:168 作者:TREX 欄目:開發技術

這篇文章主要介紹“如何使用Laravel框架源碼解析之反射”,在日常操作中,相信很多人在如何使用Laravel框架源碼解析之反射問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何使用Laravel框架源碼解析之反射”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

前言

PHP的反射類與實例化對象作用相反,實例化是調用封裝類中的方法、成員,而反射類則是拆封類中的所有方法、成員變量,并包括私有方法等。就如“解刨”一樣,我們可以調用任何關鍵字修飾的方法、成員。當然在正常業務中是建議不使用,比較反射類已經摒棄了封裝的概念。

本章講解反射類的使用及Laravel對反射的使用。

反射

反射類是PHP內部類,無需加載即可使用,你可以通過實例化 ReflectionClass 類去使用它。

方法

這里列舉下PHP反射類常用的方法

方法名注釋
ReflectionClass::getConstant獲取定義過的一個常量
ReflectionClass::getConstants獲取一組常量
ReflectionClass::getConstructor獲取類的構造函數
ReflectionClass::getDefaultProperties獲取默認屬性
ReflectionClass::getDocComment獲取文檔注釋
ReflectionClass::getEndLine獲取最后一行的行數
ReflectionClass::getFileName獲取定義類的文件名
ReflectionClass::getInterfaceNames獲取接口(interface)名稱
ReflectionClass::getMethods獲取方法的數組
ReflectionClass::getModifiers獲取類的修飾符
ReflectionClass::getName獲取類名
ReflectionClass::getNamespaceName獲取命名空間的名稱
ReflectionClass::getParentClass獲取父類

等等等等.... 所有關于類的方法、屬性及其繼承的父類、實現的接口都可以查詢到。
詳細文檔請參考官網: http://php.net/manual/zh/class.reflectionclass.php

栗子

<?php
 namespace A\B;
 
 class Foo { }
 
 $function = new \ReflectionClass('stdClass');
 
 var_dump($function->inNamespace());
 var_dump($function->getName());
 var_dump($function->getNamespaceName());
 var_dump($function->getShortName());
 
 $function = new \ReflectionClass('A\\B\\Foo');
 
 var_dump($function->inNamespace());
 var_dump($function->getName());
 var_dump($function->getNamespaceName());
 var_dump($function->getShortName());
?>

輸出結果

bool(false)
string(8) "stdClass"
string(0) ""
string(8) "stdClass"

bool(true)
string(7) "A\B\Foo"
string(3) "A\B"
string(3) "Foo"

Laravel

Laravel在實現服務容器加載時使用了反射類。現在我們開啟“解刨”模式

入口文件

index.php
$app = require_once __DIR__.'/../bootstrap/app.php';

/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/

$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);

$response = $kernel->handle(
 $request = Illuminate\Http\Request::capture()
);

$response->send();

$kernel->terminate($request, $response);

是引用語句發生的下一行調用了make方法。各位很清楚,make方法用于解析類,所有make方法的實現一定是在引用的文件內。

bootstrap\app.php
$app = new Illuminate\Foundation\Application(
 realpath(__DIR__.'/../')
);

laravel開始加載它的核心類,所有的實現從 Illuminate\Foundation\Application 開始。

Illuminate\Foundation\Application
public function make($abstract, array $parameters = [])
{
  $abstract = $this->getAlias($abstract);

  if (isset($this->deferredServices[$abstract]) && ! isset($this->instances[$abstract])) {
   $this->loadDeferredProvider($abstract);
  }

  return parent::make($abstract, $parameters);
}

在核心類中你可能準確的查找到make方法的存在,它加載了服務提供者隨后調用了父類的方法make,要知道作為獨立的模塊 “服務容器”是絕對不能寫在核心類的。懂點設計模式的都很清楚。

Illuminate\Container\Container

$api = $this->app->make('HelpSpot\API',['id'=>1]); 為例來講解

// 真正的make方法,它直接調用了resolve繼續去實現make的功能
// $abstract = 'HelpSpot\API'
public function make($abstract, array $parameters = [])
{
 // $abstract = 'HelpSpot\API'
 return $this->resolve($abstract, $parameters);
}

...

protected function resolve($abstract, $parameters = [])
{
 ...
 // 判斷是否可以合理反射
 // $abstract = 'HelpSpot\API'
 if ($this->isBuildable($concrete, $abstract)) {
  // 實例化具體實例 (實際并不是實例化,而是通過反射“解刨”了)
  $object = $this->build($concrete);
 } else {
  $object = $this->make($concrete);
 }
 ...
}

public function build($concrete)
{
  // $concrete = 'HelpSpot\API'
  if ($concrete instanceof Closure) {
   return $concrete($this, $this->getLastParameterOverride());
  }
  // 實例化反射類
  $reflector = new ReflectionClass($concrete);

  // 檢查類是否可實例化
  if (! $reflector->isInstantiable()) {
   return $this->notInstantiable($concrete);
  }

  $this->buildStack[] = $concrete;

  // 獲取類的構造函數
  $constructor = $reflector->getConstructor();
  
  if (is_null($constructor)) {
   array_pop($this->buildStack);

   return new $concrete;
  }

  $dependencies = $constructor->getParameters();

  $instances = $this->resolveDependencies(
   $dependencies
  );

  array_pop($this->buildStack);
   
  // 從給出的參數創建一個新的類實例。
  return $reflector->newInstanceArgs($instances);
}

可見一個服務容器就加載成功了。

到此,關于“如何使用Laravel框架源碼解析之反射”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

郓城县| 武鸣县| 武宣县| 大兴区| 定州市| 酒泉市| 南漳县| 友谊县| 易门县| 九龙坡区| 托克托县| 广河县| 绍兴县| 韩城市| 大城县| 静安区| 铜陵市| 新丰县| 日喀则市| 香港| 兴国县| 醴陵市| 濮阳市| 崇阳县| 奉新县| 天台县| 绥中县| 昌黎县| 洛浦县| 泾阳县| 濉溪县| 罗城| 璧山县| 德兴市| 晋城| 郁南县| 安庆市| 大荔县| 深泽县| 镇坪县| 西城区|