这篇文章主要介绍了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中文网其它相关文章!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号