PHP设计模式——装饰器模式

Posted

tags:

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

<?php

/**
 * 装饰器模式
 * 如果已有对象的部分内容或功能发生变化,但是不需要修改原始对象的结构,应使用装饰器模式
 * 
 * 为了在不修改对象结构的前提下对现有对象的内容或功能稍加修改,应使用装饰器模式
 */
class Base{
    protected $_content;
    
    public function __construct($content) {
        $this->_content = $content;
    }
    public function edit() {
        return $this->_content;
    }
}

class EditA{
    private $_base = NULL;
    public function __construct(Base $base) {
        $this->_base = $base;
    }
    public function decorator() {
        return $this->_base->edit().‘编辑操作A<br>‘;
    }
}
class EditB{
    private $_base = NULL;
    public function __construct(Base $base) {
        $this->_base = $base;
    }
    public function decorator() {
        return $this->_base->edit().‘编辑操作B<br>‘;
    }
}
//使用
$base = new Base(‘文章内容...‘);
$a = new EditA($base);
echo $a->decorator();

$b = new EditB($base);
echo $b->decorator();

 

以上是关于PHP设计模式——装饰器模式的主要内容,如果未能解决你的问题,请参考以下文章

PHP设计模式-装饰器模式

PHP设计模式之装饰器模式

PHP设计模式 - 装饰器模式

装饰器模式问题 - 如何调用嵌套装饰器方法?

PHP设计模式之装饰器模式

PHP设计模式—装饰器模式