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


/**
* 鞋接口
*/
interface ShoesInterface
{
public function product();
}

/**
* 滑板鞋实体
*/
class ShoesSkateboard implements ShoesInterface
{
public function product()
{
echo "生产一滑板鞋";
}
}

/**
* 运动鞋实体
*/
class ShoesSport implements ShoesInterface
{
public function product()
{
echo "生产一双球鞋";
}
}

/**
* 代理工厂
*/
class Proxy
{
/**
* 产品生产线对象
*/
private $_shoes;

/**
* 产品生产线类型
*/
private $_shoesType;

/**
* 构造函数.
*/
public function __construct($shoesType)
{
$this->_shoesType = $shoesType;
}

/**
* 生产.
*/
public function product()
{
switch ($this->_shoesType) {
case 'sport':
echo "我可以偷点工";
$this->_shoes = new ShoesSport();
break;
case 'skateboard':
echo "我可以减点料";
$this->_shoes = new ShoesSkateboard();
break;

default:
throw new Exception("shoes type is not available", 404);
break;
}
$this->_shoes->product();
}
}

try {
echo "未加代理之前:\n";
// 生产运动鞋
$shoesSport = new ShoesSport();
$shoesSport->product();

echo "\n--------------------\n";
//-----------------------------------

echo "加代理:\n";
$proxy = new Proxy('sport');
$proxy->product();
} catch (\Exception $e) {
echo $e->getMessage();
}