PHP设计模式 - 装饰器模式
Posted Share112
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP设计模式 - 装饰器模式相关的知识,希望对你有一定的参考价值。
装饰器模式允许我们根据运行时不同的情景动态地为某个对象调用前后添加不同的行
<?php interface Component { public function operation(); } abstract class Decorator implements Component{ // 装饰角色 protected $_component; public function __construct(Component $component) { $this->_component = $component; } public function operation() { $this->_component->operation(); } } class ConcreteDecoratorA extends Decorator { // 具体装饰类A public function __construct(Component $component) { parent::__construct($component); } public function operation() { parent::operation(); // 调用装饰类的操作 $this->addedOperationA(); // 新增加的操作 } public function addedOperationA() {echo ‘A加点酱油;‘;} } class ConcreteDecoratorB extends Decorator { // 具体装饰类B public function __construct(Component $component) { parent::__construct($component); } public function operation() { parent::operation(); $this->addedOperationB(); } public function addedOperationB() {echo "B加点辣椒;";} } class ConcreteComponent implements Component{ //具体组件类 public function operation() {} } // clients $component = new ConcreteComponent(); $decoratorA = new ConcreteDecoratorA($component); $decoratorB = new ConcreteDecoratorB($decoratorA); $decoratorA->operation();//输出:A加点酱油; echo ‘<br>--------<br>‘; $decoratorB->operation();//输出:A加点酱油;B加点辣椒; ?>
以上是关于PHP设计模式 - 装饰器模式的主要内容,如果未能解决你的问题,请参考以下文章