這篇文章主要介紹了PHP實現的簡單適配器模式,結合具體實例形式分析了php適配器模式的實現技巧與調用方法,需要的朋友可以參考下
具體如下:
<?php //适配器模式-通过适配器去执行第三方方法 //定义目标接口 interface Target{ public function simpleMethod1(); public function simpleMethod2(); } class Adatee{ public function simpleMethod1(){ echo 'Adatee simpleMethod1<br/>'; } } //类适配器模式 class Adapter implements Target{ private $adatee; public function __construct(Adatee $adatee){ $this->adatee = $adatee; } public function simpleMethod1(){ echo $this->adatee->simpleMethod1(); } public function simpleMethod2(){ echo $this->adatee->simpleMethod12(); } } //客户端接口 class Client{ public static function main(){ $adapter = new Adapter(new Adatee()); $adapter->simpleMethod1(); } } Client::main();
的方法詳解
PHP簡單###適配器###模式的介紹###########################
以上是PHP實作適配器模式的方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!