PHP设计模式之简单投诉页面实例
php  /  管理员 发布于 7年前   134
本文实例介绍了PHP简单投诉页面的实现代码,分享给大家供大家参考,具体内容如下 php代码: html代码: 以上就是本文的全部内容,希望对大家的学习有所帮助。'; } final protected function __clone() { return false; } public function conn() { echo 'Mysql连接成功
'; }}/** * 工厂模式 */interface Factory { function createDB();}class MysqlFactory implements Factory { public function createDB() { echo 'Mysql工厂创建成功
'; return MysqlSingle::getInstance(); }}/** * 根据用户名显示不同风格 * 观察者模式 */class Observer implements SplSubject { protected $_observers = NULL; public $_style = NULL; public function __construct($style) { $this->_style = $style; $this->_observers = new SplObjectStorage(); } public function show() { $this->notify(); } public function attach(SplObserver $observer) { $this->_observers->attach($observer); } public function detach(SplObserver $observer) { $this->_observers->detach($observer); } public function notify() { $this->_observers->rewind(); while ($this->_observers->valid()) { $observer = $this->_observers->current(); $observer->update($this); $this->_observers->next(); } }}class StyleA implements SplObserver { public function update(SplSubject $subject) { echo $subject->_style . ' 模块A
'; }}class StyleB implements SplObserver { public function update(SplSubject $subject) { echo $subject->_style . ' 模块B
'; }}/** * 根据不同方式进行投诉 * 桥接模式 */class Bridge { protected $_obj = NULL; public function __construct($obj) { $this->_obj = $obj; } public function msg($type) { } public function show() { $this->msg(); $this->_obj->msg(); }}class BridgeEmail extends Bridge { public function msg() { echo 'Email>>'; }}class BridgeSms extends Bridge { public function msg() { echo 'Sms>>'; }}class Normal { public function msg() { echo 'Normal
'; }}class Danger { public function msg() { echo 'Danger
'; }}/** * 适配器模式 */class Serialize { public $content = NULL; public function __construct($content) { $this->content = serialize($content); } public function show() { return '序列化格式:
' . $this->content; }}class JsonAdapter extends Serialize { public function __construct($content) { parent::__construct($content); $tmp = unserialize($this->content); $this->content = json_encode($tmp, TRUE); } public function show() { return 'Json格式:
' . $this->content; }}/** * 在投诉内容后自动追加 * 装饰器模式 */class Base { protected $_content = NULL; public function __construct($content) { $this->_content = $content; } public function getContent() { return $this->_content; }}class Decorator { private $_base = NULL; public function __construct(Base $base) { $this->_base = $base; } public function show() { return $this->_base->getContent() . '>>系统时间:' . date('Y-m-d H:i:s', time()); }}/** * 分级举报处理功能 * 责任链模式 */class level1 { protected $_level = 1; protected $_top = 'Level2'; public function deal($level) { if ($level <= $this->_level) { echo '处理级别:1
'; return; } $top = new $this->_top; $top->deal($level); }}class level2 { protected $_level = 2; protected $_top = 'Level3'; public function deal($level) { if ($level <= $this->_level) { echo '处理级别:2
'; return; } $top = new $this->_top; $top->deal($level); }}class level3 { protected $_level = 3; protected $_top = 'Level2'; public function deal($level) { echo '处理级别:3
'; return; }}if (!empty($_POST)) { echo 'PHP设计模式
'; //连接数据库――工厂+单例模式 $mysqlFactory = new MysqlFactory(); $single = $mysqlFactory->createDB(); $single->conn(); echo '
'; //观察者模式 $username = $_POST['username']; $ob = new Observer($username); $a = new StyleA(); $ob->attach($a); $b = new StyleB(); $ob->attach($b); $ob->show(); echo '
'; $ob->detach($b); $ob->show(); echo '
'; //桥接模式 $typeM = $_POST['typeM']; $typeN = 'Bridge' . $_POST['typeN']; $obj = new $typeN(new $typeM); $obj->show(); echo '
'; //适配器模式 $post = $_POST; $obj = new Serialize($post); echo $obj->show(); echo '
'; $json = new JsonAdapter($post); echo $json->show(); echo '
'; echo '
'; //装饰器模式 $content = $_POST['content']; $decorator = new Decorator(new Base($content)); echo $decorator->show(); echo '
'; //责任链模式 echo '
'; $level = $_POST['level']; $deal = new Level1(); $deal->deal(intval($level)); return;}require("0.html");
您可能感兴趣的文章:
122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..博主 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 @1111老铁这个不行了,可以看看近期评论的其他文章..1111 在
佛跳墙vpn软件不会用?上不了网?佛跳墙vpn常见问题以及解决办法中评论 网站不能打开,博主百忙中能否发个APP下载链接,佛跳墙或极光..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号