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设计模式-适配器的主要内容,如果未能解决你的问题,请参考以下文章