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相關內容感興趣的讀者可檢視本站專題:《Laravel框架入門與進階教程》、《php優秀開發框架總結》、《php面向物件程式設計入門教程》、《php+mysql資料庫操作入門教程》及《php常見資料庫操作技巧彙總》
希望本文所述對大家基於Laravel框架的PHP程式設計有所幫助。