コードをコピーします。 コードは次のとおりです。
/**
* デコレーション モード
*
* オブジェクトにいくつかの追加の責任を動的に追加します。これは、拡張機能の点でサブクラスを生成するよりも柔軟です
*/
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("必ずデコレーションモードを学習してください
");以下は装飾モードの使用方法です。 ---
class MessageBoardDecorator extends MessageBoardHandler
{
private $_handler = null;
public function __construct($handler)
{
parent::__construct(); >_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 ; Processing
}
}
$obj = new HtmlFilter(new SensitiveFilter(new MessageBoard()));
echo $obj->filter("デコレーションモードを必ず覚えてください!
");