PHP解耦的三重境界(淺談服務容器)的範例程式碼

來源:互聯網
上載者:User
本文主要介紹了PHP解耦的三重境界(淺談服務容器)的相關知識。具有很好的參考價值。下面跟著小編一起來看下吧

閱讀本文之前你需要掌握:PHP文法,物件導向

在完成整個軟體項目開發的過程中,有時需要多人合作,有時也可以自己獨立完成,不管是哪一種,隨著代碼量上升,寫著寫著就“失控”了,漸漸“醜陋介面,骯髒實現”,項目維護成本和難度上升,到了難以維持的程度,只有重構或者重新開發。

第一重境界

假設情境:我們需要寫一個處理類,能夠同時操作會話,資料庫和檔案系統。我們或許會這麼寫。

境界特徵:可以運行,但是嚴重耦合


class DB{ public function DB($arg1,$arg2){ echo 'constructed!'.PHP_EOL; }}class FileSystem{ public function FileSystem($arg1,$arg2){ echo 'constructed!'.PHP_EOL; }}class Session{ public function Session($arg1,$arg2){ echo 'constructed!'.PHP_EOL; }}class Writer{ public function Write(){ $db=new DB(1,2); $filesystem=new FileSystem(3,4); $session=new Session(5,6); }}$writer=new Writer();$writer->write();

寫法缺點:

1.在公有函數中構造對象,一旦涉及到如資料庫參數的變動,修改會有很大的工作量

2.負責設計Writer類的人員需要對DB等類的各種API要熟悉

有沒有辦法降低耦合度?

第二重境界(參數依賴)

假設情境:資料庫地址因為客戶不同,需要經常更換,調用到DB的類很多(假如有幾十個),希望即使更改了資料庫地址,也不用去修改這些類的代碼。


class DB{ public function DB($arg1,$arg2){ echo 'constructed!'.PHP_EOL; }}class FileSystem{ public function FileSystem($arg1,$arg2){ echo 'constructed!'.PHP_EOL; }}class Session{ public function Session($arg1,$arg2){ echo 'constructed!'.PHP_EOL; }}class Writer{ protected $_db; protected $_filesystem; protected $_session; public function Set($db,$filesystem,$session){ $this->_db=$db; $this->_filesystem=$filesystem; $this->_session=$session; } public function Write(){ }}$db=new DB(1,2);$filesystem=new FileSystem(3,4);$session=new Session(5,6);$writer=new Writer();$writer->Set($db,$filesystem,$session);$writer->write();

雖然把DB類的構造移到了用戶端,一旦涉及修改,工作量大大降低,但是新問題來了:為了建立一個Writer類,我們需要先建立好DB類,FileSystem類等,這對負責涉及Writer類的人來說,要求是很高的,他需要看很多其他類文檔,一個個建立(可能還需要初始化),然後才能建立出他要的writer變數。

所以,我們希望,能有一種更好的寫法,使得寫Writer類的人,用一種更加快捷的介面,就能建立和調用他要的類,甚至連參數都不用填。

第三重境界(IOC容器)

經過前兩重境界,我們希望能新增以下這些好處:

1.希望DB類,Session類,FileSystem類“拿來即用”,不用每次繁瑣的初始化,比如寫$db=new DB(arg1,arg2);這類語句。

2.希望DB等類型的對象是“全域”,在整個程式運行期間,隨時可以調用。

3.調用DB等類型的程式員不用知道這個類太多的細節,甚至可以用一個字串的別名來建立這樣一個對象。

能夠實現以上目標的就是IOC容器,可以把IOC容器簡單的看成一個全域變數,並用關聯陣列把字串和建構函式做綁定。

我們先實現一個容器類


class Container{ public $bindings; public function bind($abstract,$concrete){ $this->bindings[$abstract]=$concrete; } public function make($abstract,$parameters=[]){ return call_user_func_array($this->bindings[$abstract],$parameters); }}

服務註冊(綁定)


$container=new Container();$container->bind('db',function($arg1,$arg2){ return new DB($arg1,$arg2);});$container->bind('session',function($arg1,$arg2){ return new Session($arg1,$arg2);});$container->bind('fs',function($arg1,$arg2){ return new FileSystem($arg1,$arg2);});

容器依賴


class Writer{ protected $_db; protected $_filesystem; protected $_session; protected $container; public function Writer(Container $container){ $this->_db=$container->make('db',[1,2]); $this->_filesystem=$container->make('session',[3,4]); $this->_session=$container->make('fs',[5,6]); }}$writer=new Writer($container);

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.