forked from typecho/typecho
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.php
199 lines (183 loc) · 3.91 KB
/
Config.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<?php
/**
* 配置管理
*
* @category typecho
* @package Config
* @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
* @license GNU General Public License 2.0
* @version $Id$
*/
/**
* 配置管理类
*
* @category typecho
* @package Config
* @copyright Copyright (c) 2008 Typecho team (http://www.typecho.org)
* @license GNU General Public License 2.0
*/
class Typecho_Config implements Iterator
{
/**
* 当前配置
*
* @access private
* @var array
*/
private $_currentConfig = array();
/**
* 实例化一个当前配置
*
* @access public
* @param mixed $config 配置列表
* @return void
*/
public function __construct($config = array())
{
/** 初始化参数 */
$this->setDefault($config);
}
/**
* 工厂模式实例化一个当前配置
*
* @access public
* @param array $config 配置列表
* @return void
*/
public static function factory($config = array())
{
return new Typecho_Config($config);
}
/**
* 设置默认的配置
*
* @access public
* @param mixed $config 配置信息
* @param boolean $replace 是否替换已经存在的信息
* @return void
*/
public function setDefault($config, $replace = false)
{
if (empty($config)) {
return;
}
/** 初始化参数 */
if (is_string($config)) {
parse_str($config, $params);
} else {
$params = $config;
}
/** 设置默认参数 */
foreach ($params as $name => $value) {
if ($replace || !array_key_exists($name, $this->_currentConfig)) {
$this->_currentConfig[$name] = $value;
}
}
}
/**
* 重设指针
*
* @access public
* @return void
*/
public function rewind()
{
reset($this->_currentConfig);
}
/**
* 返回当前值
*
* @access public
* @return mixed
*/
public function current()
{
return current($this->_currentConfig);
}
/**
* 指针后移一位
*
* @access public
* @return void
*/
public function next()
{
next($this->_currentConfig);
}
/**
* 获取当前指针
*
* @access public
* @return void
*/
public function key()
{
return key($this->_currentConfig);
}
/**
* 验证当前值是否到达最后
*
* @access public
* @return boolean
*/
public function valid()
{
return false !== $this->current();
}
/**
* 魔术函数获取一个配置值
*
* @access public
* @param string $name 配置名称
* @return mixed
*/
public function __get($name)
{
return isset($this->_currentConfig[$name]) ? $this->_currentConfig[$name] : NULL;
}
/**
* 魔术函数设置一个配置值
*
* @access public
* @param string $name 配置名称
* @param mixed $value 配置值
* @return void
*/
public function __set($name, $value)
{
$this->_currentConfig[$name] = $value;
}
/**
* 直接输出默认配置值
*
* @access public
* @param string $name 配置名称
* @param array $args 参数
* @return void
*/
public function __call($name, $args)
{
echo $this->_currentConfig[$name];
}
/**
* 判断当前配置值是否存在
*
* @access public
* @param string $name 配置名称
* @return boolean
*/
public function __isSet($name)
{
return isset($this->_currentConfig[$name]);
}
/**
* 魔术方法,打印当前配置数组
*
* @access public
* @return string
*/
public function __toString()
{
return serialize($this->_currentConfig);
}
}