php设计模式 bridge (桥接模式) 作者: shuiguang 时间: 2015-11-15 分类: php开发 没有评论 25种php设计模式,你全都知道吗?下面用代码介绍桥接模式(bridge模式)<?php /** * 桥接模式 * * 将抽象部份与它实现部分分离,使用它们都可以有独立的变化 */ abstract class Implementor { abstract public function operation(); } class ConcreteImplementorA ... 阅读全文