php设计模式-适配器

Posted itxds

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php设计模式-适配器相关的知识,希望对你有一定的参考价值。

// 数据源类
class Weather { public static function getWether() { $data = array( ‘tep‘ => 28, ‘wind‘ => 5, ‘sun‘ => ‘sunny‘ ); return serialize($data); } }
// 适配不同客户端 class Adapter extends Weather { public static function getWether() { return $data = json_encode(unserialize(parent::getWether())); } } echo ‘<br>‘; print_r(Adapter::getWether());

  

以上是关于php设计模式-适配器的主要内容,如果未能解决你的问题,请参考以下文章

php设计模式-适配器模式

PHP设计模式之适配器模式

需要从寻呼机适配器识别当前视图片段

如何使用 Android 片段?

如何将数据从回收器适配器发送到片段 |如何从 recyclerview 适配器调用片段函数

如何从片段适配器启动活动