php设计模式 Decorator(装饰模式)

 2025-01-15  阅读 507  评论 8  点赞 108

摘要:复制代码 代码如下:
复制代码 代码如下:

<?php
/**
* 装饰模式
*
* 动态的给一个对象添加一些额外的职责,就扩展功能而言比生成子类方式更为灵活
*/
header("content-type:text/html;charset=utf-8");
abstract class messageboardhandler
{
public function __construct(){}
abstract public function filter($msg);
}

class messageboard extends messageboardhandler
{
public function filter($msg)
{
return "处理留言板上的内容|".$msg;
}
}

$obj = new messageboard();
echo $obj->filter("一定要学好装饰模式<br/>");

// --- 以下是使用装饰模式 ----
class messageboarddecorator extends messageboardhandler
{
private $_handler = null;

public function __construct($handler)
{
parent::__construct();
$this->_handler = $handler;
}

public function filter($msg)
{
return $this->_handler->filter($msg);
}
}

// 过滤html
class htmlfilter extends messageboarddecorator
{
public function __construct($handler)
{
parent::__construct($handler);
}

public function filter($msg)
{
return "过滤掉html标签|".parent::filter($msg);; // 过滤掉html标签的处理 这时只是加个文字 没有进行处理
}
}

// 过滤敏感词
class sensitivefilter extends messageboarddecorator
{
public function __construct($handler)
{
parent::__construct($handler);
}

public function filter($msg)
{
return "过滤掉敏感词|".parent::filter($msg); // 过滤掉敏感词的处理 这时只是加个文字 没有进行处理
}
}

$obj = new htmlfilter(new sensitivefilter(new messageboard()));
echo $obj->filter("一定要学好装饰模式!<br/>");


标签:phpphp教程

评论列表:

显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0275秒, 内存占用1.94 MB, 访问数据库29次

冀ICP备19034377号