当前位置:首页 > PHP教程 > php应用 > 列表

php装饰者模式简单应用案例分析

发布:smiling 来源: PHP粉丝网  添加日期:2022-01-16 17:16:21 浏览: 评论:0 

这篇文章主要介绍了php装饰者模式简单应用,结合具体实例形式分析了php装饰者模式的原理及文章编辑相关应用操作技巧,需要的朋友可以参考下。

本文实例讲述了php装饰者模式简单应用,分享给大家供大家参考,具体如下:

装饰模式指的是在不必改变原类文件和使用继承的情况下,动态地扩展一个对象的功能,它是通过创建一个包装对象,也就是装饰来包裹真实的对象。

示例:

A、B、C编辑同一篇文章。

  1. class Article{ 
  2.   protected $content
  3.   public function __construct($info){ 
  4.     $this->content = $info
  5.   } 
  6. class editor_A extends Article{ 
  7.   public function __construct(Article $obj){ 
  8.     $this->content = $obj->content . '<br/>' . '编辑A新写的内容'
  9.   } 
  10.   public function decorator(){ 
  11.     return $this->content; 
  12.   } 
  13. class editor_B extends Article{ 
  14.   public function __construct(Article $obj){ 
  15.     $this->content = $obj->content . '<br/>' . '编辑B新写的内容'
  16.   } 
  17.   public function decorator(){ 
  18.     return $this->content; 
  19.   } 
  20. class editor_C extends Article{ 
  21.   public function __construct(Article $obj){ 
  22.     $this->content = $obj->content . '<br/>' . '编辑C新写的内容'
  23.   } 
  24.   public function decorator(){ 
  25.     return $this->content; 
  26.   } 
  27. $artCls = new Article('你好'); 
  28. //编辑A先秀修改,然后编辑B修改,然后编辑C修改 
  29. $a = new editor_A($artCls); 
  30. $b = new editor_B($a); 
  31. $c = new editor_C($b); 
  32. echo $c->decorator(); 
  33. //编辑B先秀修改,然后编辑A修改 
  34. $b = new editor_B($artCls); 
  35. $a = new editor_A($b); 
  36. echo $a->decorator(); 

重点是传递参数的地方,使用Article $obj传递上一个操作的对象,来实现对同一个对象进行连续操作

运行结果:

你好

编辑A新写的内容

编辑B新写的内容

编辑C新写的内容你好

编辑B新写的内容

编辑A新写的内容

Tags: php装饰者模式

分享到: