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

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

时间:2016-02-23 18:50:15      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

<?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设计模式——装饰器模式

标签:

原文地址:http://www.cnblogs.com/tlxma/p/5210711.html

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