コードをコピーします コードは次のとおりです:
/**
* デコレーション モード
*
* オブジェクトにいくつかの追加の責任を動的に追加します。これは、拡張機能の点でサブクラスを生成するよりも柔軟です
*/
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
{
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);
}
public function filter($msg)
{
return "機密性の高い単語を除外する|".parent::filter($msg); // 機密性の高い単語を除外する処理はテキストを追加するだけです処理なし
}
}
$obj = new HtmlFilter(new SensitiveFilter(new MessageBoard()));
echo $obj->filter("デコレーションモードを必ず覚えてください!
");
上記は、DVD.taiwan-sex.com の内容を含む、DVD.taiwan-sex.com の PHP デザイン モード、デコレータ デコレーション モードを紹介しています。PHP チュートリアルに興味のある友人の役に立てば幸いです。