-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathObserver.php
More file actions
80 lines (70 loc) · 1.49 KB
/
Observer.php
File metadata and controls
80 lines (70 loc) · 1.49 KB
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
<?php
abstract class Subject
{
private $observers = [];
public function attach($observer)
{
$this->observers[] = $observer;
}
public function detach($observer)
{
foreach( $this->observers as $value)
{
if($value != $observer)
{
$this->observers[] = $value;
break;
}
}
}
public function notify()
{
foreach($this->observers as $observer)
{
$observer->update();
}
}
}
abstract class Observer
{
public abstract function update();
}
class ConcreteSubject extends Subject
{
public function __set($name, $value)
{
$this->$name = $value;
}
public function __get($name)
{
return $this->$name;
}
}
class ConcreteObserver extends Observer
{
public function __construct($subject, $name)
{
$this->subject = $subject;
$this->name = $name;
}
public function __set($name, $value)
{
$this->$name = $value;
}
public function __get($name)
{
return $this->$name;
}
public function update()
{
$this->observerState = $this->subject->subjectState;
var_dump("Observer:" . $this->name . " state is:" . $this->observerState);
}
}
$a = new ConcreteSubject();
$a->attach(new ConcreteObserver($a , 'X'));
$a->attach(new ConcreteObserver($a , 'Y'));
$a->attach(new ConcreteObserver($a , 'Z'));
$a->subjectState = 'ABC';
$a->notify();
?>