php装饰者模式简单应用案例分析
发布:smiling 来源: PHP粉丝网 添加日期:2022-01-16 17:16:21 浏览: 评论:0
这篇文章主要介绍了php装饰者模式简单应用,结合具体实例形式分析了php装饰者模式的原理及文章编辑相关应用操作技巧,需要的朋友可以参考下。
本文实例讲述了php装饰者模式简单应用,分享给大家供大家参考,具体如下:
装饰模式指的是在不必改变原类文件和使用继承的情况下,动态地扩展一个对象的功能,它是通过创建一个包装对象,也就是装饰来包裹真实的对象。
示例:
A、B、C编辑同一篇文章。
- class Article{
- protected $content;
- public function __construct($info){
- $this->content = $info;
- }
- }
- class editor_A extends Article{
- public function __construct(Article $obj){
- $this->content = $obj->content . '<br/>' . '编辑A新写的内容';
- }
- public function decorator(){
- return $this->content;
- }
- }
- class editor_B extends Article{
- public function __construct(Article $obj){
- $this->content = $obj->content . '<br/>' . '编辑B新写的内容';
- }
- public function decorator(){
- return $this->content;
- }
- }
- class editor_C extends Article{
- public function __construct(Article $obj){
- $this->content = $obj->content . '<br/>' . '编辑C新写的内容';
- }
- public function decorator(){
- return $this->content;
- }
- }
- $artCls = new Article('你好');
- //编辑A先秀修改,然后编辑B修改,然后编辑C修改
- $a = new editor_A($artCls);
- $b = new editor_B($a);
- $c = new editor_C($b);
- echo $c->decorator();
- //编辑B先秀修改,然后编辑A修改
- $b = new editor_B($artCls);
- $a = new editor_A($b);
- echo $a->decorator();
重点是传递参数的地方,使用Article $obj传递上一个操作的对象,来实现对同一个对象进行连续操作
运行结果:
你好
编辑A新写的内容
编辑B新写的内容
编辑C新写的内容你好
编辑B新写的内容
编辑A新写的内容
Tags: php装饰者模式
- 上一篇:php适配器模式简单应用示例
- 下一篇:最后一页
相关文章
- ·PHP设计模式之装饰者模式代码实例(2021-05-26)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)