forked from 734380794/design-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
01-解析器模式.php
122 lines (109 loc) · 2.39 KB
/
01-解析器模式.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
<?php
declare(strict_types=1);
/*
* This file is modified from `xiaohuangniu/26`.
*
* @see https://github.com/xiaohuangniu/26
*/
header('Content-type: text/html; charset=utf-8');
/**
* 环境角色
* 用于存储解析器所需要的全局信息.
*/
class PlayContent
{
public $content;
}
/**
* 抽象解析器
* 调用解析方法,进行解析处理
* 派生出一个具体解析方法,用于解析延伸.
*/
abstract class IExpress
{
// 解析方法
public function Translate($val)
{
echo $this->Excute($val);
}
// 派生出一个具体的解析方法
abstract public function Excute($key);
}
/**
* 派生出的具体解析器A.
*/
class AoNote extends IExpress
{
// 实现父类的抽象方法
public function Excute($key)
{
switch ($key) {
case 'i':
$note = '我';
break;
default:
$note = null;
}
return $note;
}
}
/**
* 派生出的具体解析器B.
*/
class BoNote extends IExpress
{
// 实现父类的抽象方法
public function Excute($key)
{
switch ($key) {
case '1':
$note = '大';
break;
case '2':
$note = '狗';
break;
case '3':
$note = '蛋';
break;
default:
$note = null;
}
return $note;
}
}
/**
* 派生出的具体解析器C.
*/
class CoNote extends IExpress
{
// 实现父类的抽象方法
public function Excute($key)
{
return $key;
}
}
// 测试
$playContent = new PlayContent();
$playContent->content = 'i love you 123!'; // 注入解析规则需要的信息
// 下面的代码根据你自己定义的解析器规则,逻辑会变动
for ($i = 0; $i < strlen($playContent->content); ++$i) {
$temp = $playContent->content[$i];
// 根据规则,选择对应的具体解析器
switch ($temp) {
case 'i':
$expression = new AoNote();
break;
case '1':
$expression = new BoNote();
break;
case '2':
$expression = new BoNote();
break;
case '3':
$expression = new BoNote();
break;
default:
$expression = new CoNote();
}
echo $expression->Translate($temp);
}