-
Notifications
You must be signed in to change notification settings - Fork 699
/
Copy pathtest.php
38 lines (30 loc) · 912 Bytes
/
test.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
<?php
/**
* 行为型模式
*
* php观察者模式
* 观察者观察被观察者,被观察者通知观察者
*
* @author TIGERB <https://github.com/TIGERB>
* @example 运行 php test.php
*/
// 注册自加载
spl_autoload_register('autoload');
function autoload($class)
{
require dirname($_SERVER['SCRIPT_FILENAME']) . '//..//' . str_replace('\\', '/', $class) . '.php';
}
/************************************* test *************************************/
use observer\Observable;
use observer\ObserverExampleOne;
use observer\ObserverExampleTwo;
// 注册一个被观察者对象
$observable = new Observable();
// 注册观察者们
$observerExampleOne = new ObserverExampleOne();
$observerExampleTwo = new ObserverExampleTwo();
// 附加观察者
$observable->attach($observerExampleOne);
$observable->attach($observerExampleTwo);
// 被观察者通知观察者们
$observable->notify();