本文實(shí)例講述了php反射學(xué)習(xí)之依賴(lài)注入。分享給大家供大家參考,具體如下:
先看代碼:
?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]);
// 檢查類(lèi)是否存在
if (!class_exists($controller)) {
exit("Class $controller does not existed!");
}
// 獲取類(lèi)的反射
$reflector = new ReflectionClass($controller);
// 檢查方法是否存在
if (!$reflector->hasMethod($action)) {
exit("Method $action does not existed!");
}
// 取類(lèi)的構(gòu)造函數(shù)
$constructor = $reflector->getConstructor();
// 取構(gòu)造函數(shù)的參數(shù)
$parameters = $constructor->getParameters();
// 遍歷參數(shù)
foreach ($parameters as $key => $parameter) {
// 獲取參數(shù)聲明的類(lèi)
$injector = new ReflectionClass($parameter->getClass()->name);
// 實(shí)例化參數(shù)聲明類(lèi)并填入?yún)?shù)列表
$parameters[$key] = $injector->newInstance();
}
// 使用參數(shù)列表實(shí)例 controller 類(lèi)
$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類(lèi)型的對(duì)象,
通過(guò)php 反射,我們實(shí)現(xiàn)了, TestModel 對(duì)象的自動(dòng)注入,
上面的例子類(lèi)似于一個(gè)請(qǐng)求分發(fā)的過(guò)程,是路由請(qǐng)求的分發(fā)的一部分,假如我們要接收一個(gè)請(qǐng)求 地址例如: /Hello/World
意思是要執(zhí)行 HelloController 下的 WorldAction 方法。
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門(mén)教程》、《PHP數(shù)組(Array)操作技巧大全》、《PHP基本語(yǔ)法入門(mén)教程》、《PHP運(yùn)算與運(yùn)算符用法總結(jié)》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫(kù)操作入門(mén)教程》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》
希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- php+laravel依賴(lài)注入知識(shí)點(diǎn)總結(jié)
- laravel框架中你所用到的依賴(lài)注入詳解
- 通過(guò)源碼解析Laravel的依賴(lài)注入
- Laravel實(shí)現(xiàn)構(gòu)造函數(shù)自動(dòng)依賴(lài)注入的方法
- PHP依賴(lài)注入容器知識(shí)點(diǎn)淺析
- php依賴(lài)注入知識(shí)點(diǎn)詳解
- php中的依賴(lài)注入實(shí)例詳解
- PHP依賴(lài)注入原理與用法分析
- 詳解Laravel框架的依賴(lài)注入功能