-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.php
122 lines (99 loc) · 1.72 KB
/
index.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
/**
* Pattern "Registry" (Structural)
* This is demo code
* See for details: http://maxsite.org/page/php-patterns
*/
/**
* Registry use Multiton
*/
trait MultitonTrait
{
private static $list;
public static function getInstance(string $instance = 'default')
{
if (empty(self::$list[$instance])) self::$list[$instance] = new static();
return self::$list[$instance];
}
private function __construct()
{
}
private function __clone()
{
}
private function __wakeup()
{
}
}
/**
* Class Registry
*/
class Registry
{
use MultitonTrait;
private $registry = [];
public function set(string $key, $val)
{
$this->registry[$key] = $val;
}
public function get(string $key, $default = false)
{
if (isset($this->registry[$key]))
return $this->registry[$key];
else
return $default;
}
public function getAll()
{
return $this->registry;
}
public function unset(string $key)
{
if (isset($this->registry[$key]))
unset($this->registry[$key]);
}
}
/**
* demo
*/
echo '<pre>'; // for print in browser
# $r = new Registry(); // Error: Call to private Registry::__construct()
/**
* get instance
*/
$r1 = Registry::getInstance(); // "default" instance
$r1->set('key', 'value');
print_r($r1->get('key'));
/**
value
*/
$r1->set('key1', 'value1');
print_r($r1->get('key1'));
/**
value1
*/
print_r($r1->getAll());
/**
Array
(
[key] => value
[key1] => value1
)
*/
echo '<hr>';
$r2 = Registry::getInstance('myData');
print_r($r2->getAll());
/**
Array
(
)
*/
$r2->set('key22', 'value22');
print_r($r2->getAll());
/**
Array
(
[key22] => value22
)
*/
# end of file