码迷,mamicode.com
首页 > Web开发 > 详细

php设计模式-适配器

时间:2020-07-24 09:41:33      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:adapter   function   cti   json   数据   get   parent   ext   print   

// 数据源类
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设计模式-适配器

标签:adapter   function   cti   json   数据   get   parent   ext   print   

原文地址:https://www.cnblogs.com/xiangdongsheng/p/13369609.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!