-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathProxy.class.php
executable file
·58 lines (46 loc) · 1.67 KB
/
Proxy.class.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
<?php
/**
* 代理: 构建了透明置于两个不同对象之内的一个对象,从而能够截取或代理这两个对象间的通信或访问
* 在需要截取两个对象之间的通信时,最佳的做法是使用一个基于代理设计模式的新对象
*
*/
//基础CD类
class CD {
protected $_title = "";
protected $_band = "";
protected $_handle = NULL;
public function __construct($title, $band) {
$this->_title = $title;
$this->_band = $band;
}
public function buy() {
$this->_connect();
$query = "update cd set bought = 1 where band = '";
$query .= mysqli_real_escape_string($this->_band, $this->_handle);
$query .= " ' and title = '";
$query .= mysqli_real_escape_string($this->_title, $this->_handle);
$query .= "'";
mysqli_query($query, $this->_handle);
//var_dump("success");
}
protected function _connect() {
$this->_handle = mysqli_connect("localhost", "root", "root");
mysqli_select_db("test", $this->_handle);
}
}
//现在我们需要访问位于德克萨斯州达拉斯某处的数据, 这就要求一个具有访问性能的Proxy对象,
//该对象需要截取与本地数据库的链接, 转而链接到达拉斯网络运营中心。
//代理类
class DallasNoCCDProxy extends CD {
protected function _connect() {
$this->_handle = mysqli_connect("dallas", "user", "pass");
mysqli_select_db("test", $this->_handle);
}
}
//测试实例
$enternalTitle = "Waster of a Rib";
$externalBand = "Neve Again";
$cd = new CD($enternalTitle, $externalBand);
$cd->buy();
$dallasCD = new DallasNoCCDProxy($enternalTitle, $externalBand);
$dallasCD->buy();