這篇文章將為大家詳細(xì)講解有關(guān)php反射實(shí)現(xiàn)之依賴注入,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
10余年建站經(jīng)驗(yàn), 網(wǎng)站設(shè)計(jì)、做網(wǎng)站客戶的見證與正確選擇。成都創(chuàng)新互聯(lián)公司提供完善的營銷型網(wǎng)頁建站明細(xì)報(bào)價(jià)表。后期開發(fā)更加便捷高效,我們致力于追求更美、更快、更規(guī)范。<?php if (PHP_SAPI != 'cli') { exit('Please run it in terminal!'); } if ($argc < 3) { exit('At least 2 arguments needed!'); } $controller = ucfirst($argv[1]) . 'Controller'; $action = 'action' . ucfirst($argv[2]); // 檢查類是否存在 if (!class_exists($controller)) { exit("Class $controller does not existed!"); } // 獲取類的反射 $reflector = new ReflectionClass($controller); // 檢查方法是否存在 if (!$reflector->hasMethod($action)) { exit("Method $action does not existed!"); } // 取類的構(gòu)造函數(shù) $constructor = $reflector->getConstructor(); // 取構(gòu)造函數(shù)的參數(shù) $parameters = $constructor->getParameters(); // 遍歷參數(shù) foreach ($parameters as $key => $parameter) { // 獲取參數(shù)聲明的類 $injector = new ReflectionClass($parameter->getClass()->name); // 實(shí)例化參數(shù)聲明類并填入?yún)?shù)列表 $parameters[$key] = $injector->newInstance(); } // 使用參數(shù)列表實(shí)例 controller 類 $instance = $reflector->newInstanceArgs($parameters); // 執(zhí)行 $instance->$action(); class HelloController { private $model; public function __construct(TestModel $model) { $this->model = $model; } public function actionWorld() { echo $this->model->property, PHP_EOL; } } class TestModel { public $property = 'property'; }
(以上代碼非原創(chuàng))將以上代碼保存為 run.php
運(yùn)行方式,在終端下執(zhí)行php run.php Hello World
可以看到,我們要執(zhí)行 HelloController 下的 WorldAction,
HelloController 的構(gòu)造函數(shù)需要一個(gè) TestModel類型的對象,
通過php 反射,我們實(shí)現(xiàn)了, TestModel 對象的自動注入,
上面的例子類似于一個(gè)請求分發(fā)的過程,是路由請求的分發(fā)的一部分,假如我們要接收一個(gè)請求 地址例如: /Hello/World
意思是要執(zhí)行 HelloController 下的 WorldAction 方法。
關(guān)于php反射實(shí)現(xiàn)之依賴注入就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
當(dāng)前題目:php反射實(shí)現(xiàn)之依賴注入-創(chuàng)新互聯(lián)
分享URL:http://www.rwnh.cn/article40/icheo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制網(wǎng)站、網(wǎng)站維護(hù)、外貿(mào)網(wǎng)站建設(shè)、全網(wǎng)營銷推廣、移動網(wǎng)站建設(shè)、App設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容