依賴注入原理:
依賴注入是一種允許我們從硬編碼的依賴中解耦出來,從而在運行時或者編譯時能夠修改的軟體設計模式。簡而言之就是可以讓我們在類別的方法中更方便的呼叫與之關聯的類別。
實例講解:
假設有這樣的類別:
class Test { public function index(Demo $demo,Apple $apple){ $demo->show(); $apple->fun(); } }
如果想要使用index方法我們需要這樣做:
$demo = new Demo(); $apple = new Apple(); $obj = new Test(); $obj->index($demo,$apple);
index方法呼叫起來是不是很麻煩?上面的方法還只是有兩個參數,如果有更多的參數,我們就要實例化更多的物件作為參數。如果我們引入的“依賴注入”,呼叫方式將會是像下面這個樣子。
$obj = new dependencyInjection(); $obj->fun("Test","index");
我們上面的例子中,Test類別的index方法依賴Demo和Apple類別。
「依賴注入」就是辨識出所有方法「依賴」的類,然後作為參數值「注入」到該方法中。
dependencyInjection類別就是完成這個依賴注入任務的。
<?php /** * Created by PhpStorm. * User: zhezhao * Date: 2016/8/10 * Time: 19:18 */ class dependencyInjection { function fun($className,$action){ $reflectionMethod = new ReflectionMethod($className,$action); $parammeters = $reflectionMethod->getParameters(); $params = array(); foreach ($parammeters as $item) { preg_match('/> ([^ ]*)/',$item,$arr); $class = trim($arr[1]); $params[] = new $class(); } $instance = new $className(); $res = call_user_func_array([$instance,$action],$params); return $res; } }
在mvc框架中,control有時會用到多個model。如果我們使用了依賴注入和類別的自動載入之後,我們就可以像下面這樣使用。
public function index(UserModel $userModel,MessageModel $messageModel){ $userList = $userModel->getAllUser(); $messageList = $messageModel->getAllMessage(); }
推薦教學:PHP影片教學
以上是關於PHP中依賴注入的詳細介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!