摘要:本章講解反射類(lèi)的使用及對(duì)反射的使用。各位很清楚,方法用于解析類(lèi),所有方法的實(shí)現(xiàn)一定是在引用的文件內(nèi)。致謝感謝你看到這里,本篇文章源碼解析靠個(gè)人理解。
前言
PHP的反射類(lèi)與實(shí)例化對(duì)象作用相反,實(shí)例化是調(diào)用封裝類(lèi)中的方法、成員,而反射類(lèi)則是拆封類(lèi)中的所有方法、成員變量,并包括私有方法等。就如“解刨”一樣,我們可以調(diào)用任何關(guān)鍵字修飾的方法、成員。當(dāng)然在正常業(yè)務(wù)中是建議不使用,比較反射類(lèi)已經(jīng)摒棄了封裝的概念。
本章講解反射類(lèi)的使用及Laravel對(duì)反射的使用。
反射反射類(lèi)是PHP內(nèi)部類(lèi),無(wú)需加載即可使用,你可以通過(guò)實(shí)例化 ReflectionClass 類(lèi)去使用它。
方法這里列舉下PHP反射類(lèi)常用的方法
方法名 | 注釋 |
---|---|
ReflectionClass::getConstant | 獲取定義過(guò)的一個(gè)常量 |
ReflectionClass::getConstants | 獲取一組常量 |
ReflectionClass::getConstructor | 獲取類(lèi)的構(gòu)造函數(shù) |
ReflectionClass::getDefaultProperties | 獲取默認(rèn)屬性 |
ReflectionClass::getDocComment | 獲取文檔注釋 |
ReflectionClass::getEndLine | 獲取最后一行的行數(shù) |
ReflectionClass::getFileName | 獲取定義類(lèi)的文件名 |
ReflectionClass::getInterfaceNames | 獲取接口(interface)名稱(chēng) |
ReflectionClass::getMethods | 獲取方法的數(shù)組 |
ReflectionClass::getModifiers | 獲取類(lèi)的修飾符 |
ReflectionClass::getName | 獲取類(lèi)名 |
ReflectionClass::getNamespaceName | 獲取命名空間的名稱(chēng) |
ReflectionClass::getParentClass | 獲取父類(lèi) |
等等等等.... 所有關(guān)于類(lèi)的方法、屬性及其繼承的父類(lèi)、實(shí)現(xiàn)的接口都可以查詢(xún)到。
詳細(xì)文檔請(qǐng)參考官網(wǎng): http://php.net/manual/zh/clas...
inNamespace()); var_dump($function->getName()); var_dump($function->getNamespaceName()); var_dump($function->getShortName()); $function = new ReflectionClass("ABFoo"); var_dump($function->inNamespace()); var_dump($function->getName()); var_dump($function->getNamespaceName()); var_dump($function->getShortName()); ?>
輸出結(jié)果
bool(false) string(8) "stdClass" string(0) "" string(8) "stdClass" bool(true) string(7) "ABFoo" string(3) "AB" string(3) "Foo"Laravel
Laravel在實(shí)現(xiàn)服務(wù)容器加載時(shí)使用了反射類(lèi)。現(xiàn)在我們開(kāi)啟“解刨”模式
入口文件 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(IlluminateContractsHttpKernel::class); $response = $kernel->handle( $request = IlluminateHttpRequest::capture() ); $response->send(); $kernel->terminate($request, $response);
是引用語(yǔ)句發(fā)生的下一行調(diào)用了make方法。各位很清楚,make方法用于解析類(lèi),所有make方法的實(shí)現(xiàn)一定是在引用的文件內(nèi)。
bootstrapapp.php$app = new IlluminateFoundationApplication( realpath(__DIR__."/../") );
laravel開(kāi)始加載它的核心類(lèi),所有的實(shí)現(xiàn)從 IlluminateFoundationApplication 開(kāi)始。
IlluminateFoundationApplicationpublic 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); }
在核心類(lèi)中你可能準(zhǔn)確的查找到make方法的存在,它加載了服務(wù)提供者隨后調(diào)用了父類(lèi)的方法make,要知道作為獨(dú)立的模塊 “服務(wù)容器”是絕對(duì)不能寫(xiě)在核心類(lèi)的。懂點(diǎn)設(shè)計(jì)模式的都很清楚。
IlluminateContainerContainer以 $api = $this->app->make("HelpSpotAPI",["id"=>1]); 為例來(lái)講解
// 真正的make方法,它直接調(diào)用了resolve繼續(xù)去實(shí)現(xiàn)make的功能 // $abstract = "HelpSpotAPI" public function make($abstract, array $parameters = []) { // $abstract = "HelpSpotAPI" return $this->resolve($abstract, $parameters); } ... protected function resolve($abstract, $parameters = []) { ... // 判斷是否可以合理反射 // $abstract = "HelpSpotAPI" if ($this->isBuildable($concrete, $abstract)) { // 實(shí)例化具體實(shí)例 (實(shí)際并不是實(shí)例化,而是通過(guò)反射“解刨”了) $object = $this->build($concrete); } else { $object = $this->make($concrete); } ... } public function build($concrete) { // $concrete = "HelpSpotAPI" if ($concrete instanceof Closure) { return $concrete($this, $this->getLastParameterOverride()); } // 實(shí)例化反射類(lèi) $reflector = new ReflectionClass($concrete); // 檢查類(lèi)是否可實(shí)例化 if (! $reflector->isInstantiable()) { return $this->notInstantiable($concrete); } $this->buildStack[] = $concrete; // 獲取類(lèi)的構(gòu)造函數(shù) $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); // 從給出的參數(shù)創(chuàng)建一個(gè)新的類(lèi)實(shí)例。 return $reflector->newInstanceArgs($instances); }
可見(jiàn)一個(gè)服務(wù)容器就加載成功了。
致謝感謝你看到這里,本篇文章源碼解析靠個(gè)人理解。如有出入請(qǐng)拍磚。
希望本篇文章可以幫到你。謝謝
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/29414.html
摘要:入口啟動(dòng)后,會(huì)先加載服務(wù)提供者中間件等組件,在查找路由之前因?yàn)槲覀兪褂玫氖情T(mén)面,所以先要查到的實(shí)體類(lèi)。注冊(cè)第一步當(dāng)然還是通過(guò)服務(wù)提供者,因?yàn)檫@是啟動(dòng)的關(guān)鍵,在內(nèi)加載路由文件。因路由文件中沒(méi)有命名空間。 showImg(https://segmentfault.com/img/bVbhjvY?w=600&h=296); 前言 我的解析文章并非深層次多領(lǐng)域的解析攻略。但是參考著開(kāi)發(fā)文檔看此...
摘要:說(shuō)明中經(jīng)常使用的反射特性來(lái)設(shè)計(jì)代碼,本文主要學(xué)習(xí)的反射特性,來(lái)提高寫(xiě)代碼時(shí)的設(shè)計(jì)質(zhì)量。提供一套檢測(cè)的兩個(gè)工具包和,類(lèi)似于探針一樣的東西來(lái)探測(cè)這些一等公民。限于篇幅,下篇再聊下反射。 說(shuō)明:Laravel中經(jīng)常使用PHP的反射特性來(lái)設(shè)計(jì)代碼,本文主要學(xué)習(xí)PHP的反射特性,來(lái)提高寫(xiě)代碼時(shí)的設(shè)計(jì)質(zhì)量。PHP提供一套檢測(cè)class, interface, trait, property, me...
摘要:判斷是否存在構(gòu)造函數(shù),不存在直接實(shí)例化,存在則通過(guò)來(lái)獲取輸入函數(shù),并有相應(yīng)的方法解決依賴(lài)參數(shù)問(wèn)題,實(shí)現(xiàn)依賴(lài)注入。 Laravel 框架關(guān)鍵技術(shù)解析·讀書(shū)筆記(一) 第一章 入口文件 請(qǐng)求訪問(wèn)的入口文件,主要完成幾部分工作,分別是: 自動(dòng)加載函數(shù)的添加 服務(wù)器實(shí)例化與服務(wù)注冊(cè) 路由加載 請(qǐng)求實(shí)例化與路由分發(fā) 相應(yīng)生成與發(fā)送 其中,自動(dòng)加載函數(shù)用于包含引用文件,改文件是composer...
在 Laravel 的控制器的構(gòu)造方法或者成員方法,都可以通過(guò)類(lèi)型約束的方式使用依賴(lài)注入,如: public function store(Request $request) { //TODO } 這里 $request 參數(shù)就使用了類(lèi)型約束,Request 是類(lèi)型約束的類(lèi)型,它是一個(gè)類(lèi):IlluminateHttpRequest. 本文研究 Laravel 的依賴(lài)注入原理,為什么這樣定義...
摘要:而函數(shù)作用是加載延遲服務(wù),與容器解析關(guān)系不大,我們放在以后再說(shuō)。在構(gòu)造之前,服務(wù)容器會(huì)先把放入中,繼而再去解析。利用服務(wù)容器解析依賴(lài)的參數(shù)。 make解析 首先歡迎關(guān)注我的博客: www.leoyang90.cn 服務(wù)容器對(duì)對(duì)象的自動(dòng)解析是服務(wù)容器的核心功能,make 函數(shù)、build 函數(shù)是實(shí)例化對(duì)象重要的核心,先大致看一下代碼: public function make($abst...
閱讀 2032·2021-11-08 13:14
閱讀 2940·2021-10-18 13:34
閱讀 2028·2021-09-23 11:21
閱讀 3591·2019-08-30 15:54
閱讀 1760·2019-08-30 15:54
閱讀 2930·2019-08-29 15:33
閱讀 2581·2019-08-29 14:01
閱讀 1948·2019-08-29 13:52