PHP设计模式之简单投诉页面实例

2025-05-29 0 52

本文实例介绍了PHP简单投诉页面的实现代码,分享给大家供大家参考,具体内容如下

php代码:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330
<?php

/*

* 设计模式练习

* 1.数据库连接类(单例模式)

* 2.调用接口实现留言本功能(工厂模式)

* 3.实现分级举报处理功能(责任链模式)

* 4.发送不同组合的举报信息(桥接模式)

* 5.发送不同格式的举报信息(适配器模式)

* 6.在投诉内容后自动追加时间(装饰器模式)

* 7.根据会员登录信息变换显示风格(观察者模式)

* 8.根据发帖长度加经验值(策略模式)

*/

interface DB {

function conn();

}

/**

* 单例模式

*/

class MysqlSingle implements DB {

protected static $_instance = NULL;

public static function getInstance() {

if (!self::$_instance instanceof self) {

self::$_instance = new self;

}

return self::$_instance;

}

final protected function __construct() {

echo 'Mysql单例创建成功<br>';

}

final protected function __clone() {

return false;

}

public function conn() {

echo 'Mysql连接成功<br>';

}

}

/**

* 工厂模式

*/

interface Factory {

function createDB();

}

class MysqlFactory implements Factory {

public function createDB() {

echo 'Mysql工厂创建成功<br>';

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<br>';

}

}

class StyleB implements SplObserver {

public function update(SplSubject $subject) {

echo $subject->_style . ' 模块B<br>';

}

}

/**

* 根据不同方式进行投诉

* 桥接模式

*/

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<br>';

}

}

class Danger {

public function msg() {

echo 'Danger<br>';

}

}

/**

* 适配器模式

*/

class Serialize {

public $content = NULL;

public function __construct($content) {

$this->content = serialize($content);

}

public function show() {

return '序列化格式:<br>' . $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格式:<br>' . $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<br>';

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<br>';

return;

}

$top = new $this->_top;

$top->deal($level);

}

}

class level3 {

protected $_level = 3;

protected $_top = 'Level2';

public function deal($level) {

echo '处理级别:3<br>';

return;

}

}

if (!empty($_POST)) {

echo '<h1>PHP设计模式</h1>';

//连接数据库——工厂+单例模式

$mysqlFactory = new MysqlFactory();

$single = $mysqlFactory->createDB();

$single->conn();

echo '<br>';

//观察者模式

$username = $_POST['username'];

$ob = new Observer($username);

$a = new StyleA();

$ob->attach($a);

$b = new StyleB();

$ob->attach($b);

$ob->show();

echo '<br>';

$ob->detach($b);

$ob->show();

echo '<br>';

//桥接模式

$typeM = $_POST['typeM'];

$typeN = 'Bridge' . $_POST['typeN'];

$obj = new $typeN(new $typeM);

$obj->show();

echo '<br>';

//适配器模式

$post = $_POST;

$obj = new Serialize($post);

echo $obj->show();

echo '<br>';

$json = new JsonAdapter($post);

echo $json->show();

echo '<br>';

echo '<br>';

//装饰器模式

$content = $_POST['content'];

$decorator = new Decorator(new Base($content));

echo $decorator->show();

echo '<br>';

//责任链模式

echo '<br>';

$level = $_POST['level'];

$deal = new Level1();

$deal->deal(intval($level));

return;

}

require("0.html");

html代码:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43
<!DOCTYPE html>

<!--

To change this license header, choose License Headers in Project Properties.

To change this template file, choose Tools | Templates

and open the template in the editor.

-->

<html>

<head>

<title>PHP设计模式</title>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<style>

div{border:solid gray 1px;margin-top:10px;height: 100px;width: 200px;}

</style>

</head>

<body>

<form action="0.php" method="post">

<h1>用户名</h1>

<select id="username" name="username">

<option value="Tom">Tom</option>

<option value="Lily">Lily</option>

</select>

<h1>投诉方式</h1>

<select id="type" name="typeM">

<option value="Normal">Normal</option>

<option value="Danger">Danger</option>

</select>

<select id="type" name="typeN">

<option value="Email">Email</option>

<option value="Sms">Sms</option>

</select>

<h1>处理级别</h1>

<select id="level" name="level">

<option value="1">1</option>

<option value="2">2</option>

<option value="3">3</option>

</select>

<h1>投诉内容</h1>

<textarea id="content" name="content" rows="3"></textarea>

<button type="submit">提交</button>

</form>

</body>

</html>

以上就是本文的全部内容,希望对大家的学习有所帮助。

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 PHP设计模式之简单投诉页面实例 https://www.kuaiidc.com/99357.html

相关文章

发表评论
暂无评论