|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* Provide GetCfg and SetCfg function |
|
4
|
|
|
* @package fwolflib |
|
5
|
|
|
* @copyright Copyright 2007, Fwolf |
|
6
|
|
|
* @author Fwolf <[email protected]> |
|
7
|
|
|
* @since 2007-10-23 |
|
8
|
|
|
* @version $Id$ |
|
9
|
|
|
*/ |
|
10
|
|
|
|
|
11
|
|
|
require_once(dirname(__FILE__) . '/../fwolflib.php'); |
|
12
|
|
|
|
|
13
|
|
|
|
|
14
|
|
|
/** |
|
15
|
|
|
* Get global config setting from global var $config |
|
16
|
|
|
* |
|
17
|
|
|
* String split by '.' means multidimensional array. |
|
18
|
|
|
* |
|
19
|
|
|
* @deprecated Use Fwlib\Config\Config |
|
20
|
|
|
* @see SetCfg() |
|
21
|
|
|
* @param string $key |
|
22
|
|
|
* @return mixed |
|
23
|
|
|
*/ |
|
24
|
|
|
function GetCfg ($key) { |
|
25
|
|
|
global $config; |
|
26
|
|
|
if (false === strpos($key, '.')) { |
|
27
|
|
|
if (isset($config[$key])) |
|
28
|
|
|
return($config[$key]); |
|
29
|
|
|
else |
|
30
|
|
|
return null; |
|
31
|
|
|
} else { |
|
32
|
|
|
// Recoginize the dot |
|
33
|
|
|
$ar = explode('.', $key); |
|
34
|
|
|
$c = $config; |
|
35
|
|
|
foreach ($ar as $val) { |
|
36
|
|
|
// Every dimision will go 1 level deeper |
|
37
|
|
|
if (isset($c[$val])) |
|
38
|
|
|
$c = &$c[$val]; |
|
39
|
|
|
else |
|
40
|
|
|
return null; |
|
41
|
|
|
} |
|
42
|
|
|
return($c); |
|
43
|
|
|
} |
|
44
|
|
|
} // end of func GetCfg |
|
45
|
|
|
|
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* Limit program can only run on prefered server, identify by serverid |
|
49
|
|
|
* If check failed, die and exit. |
|
50
|
|
|
* SetCfg('serverid', 0); |
|
51
|
|
|
* |
|
52
|
|
|
* @deprecated Use Fwlib\Config\Config |
|
53
|
|
|
* @param mixed $id string/int -> on this server, array -> in any of these server |
|
54
|
|
|
* @param boolean $die If check false, true -> die(), false -> return false and continue, default is true. |
|
55
|
|
|
* @see SetCfg() |
|
56
|
|
|
* @see GetCfg() |
|
57
|
|
|
* @return boolean |
|
58
|
|
|
*/ |
|
59
|
|
|
function LimitServerId($id, $die = true) { |
|
60
|
|
|
$serverid = GetCfg('server.id'); |
|
61
|
|
|
if (empty($serverid)) |
|
62
|
|
|
$serverid = GetCfg('serverid'); |
|
63
|
|
|
|
|
64
|
|
|
$msg = ''; |
|
65
|
|
|
if (is_array($id)) { |
|
66
|
|
|
if (!in_array($serverid, $id)) |
|
67
|
|
|
$msg = 'This program can only run on these servers: ' . implode(',', $id) . '.'; |
|
68
|
|
|
} elseif ($serverid != $id) |
|
69
|
|
|
$msg = 'This program can only run on server ' . $id . '.'; |
|
70
|
|
|
|
|
71
|
|
|
if (!empty($msg)) |
|
72
|
|
|
if (true == $die) |
|
|
|
|
|
|
73
|
|
|
die($msg); |
|
74
|
|
|
else |
|
75
|
|
|
return false; |
|
76
|
|
|
else |
|
77
|
|
|
return true; |
|
78
|
|
|
} // end of func LimitServerId |
|
79
|
|
|
|
|
80
|
|
|
|
|
81
|
|
|
/** |
|
82
|
|
|
* Set global config var $config |
|
83
|
|
|
* |
|
84
|
|
|
* Multidimensional array style setting supported, |
|
85
|
|
|
* If $key is string including '.', its converted to array by it recurrently. |
|
86
|
|
|
* eg: system.format.time => $config['system']['format']['time'] |
|
87
|
|
|
* |
|
88
|
|
|
* @deprecated Use Fwlib\Config\Config |
|
89
|
|
|
* @param string $key |
|
90
|
|
|
* @param mixed $val |
|
91
|
|
|
*/ |
|
92
|
|
|
function SetCfg ($key, $val) { |
|
93
|
|
|
global $config; |
|
94
|
|
|
if (false === strpos($key, '.')) { |
|
95
|
|
|
$config[$key] = $val; |
|
96
|
|
|
} else { |
|
97
|
|
|
// Recoginize the dot |
|
98
|
|
|
$ar = explode('.', $key); |
|
99
|
|
|
$c = &$config; |
|
100
|
|
|
$j = count($ar) - 1; |
|
101
|
|
|
// Every loop will go 1 level sub array |
|
102
|
|
|
for ($i = 0; $i < $j; $i ++) { |
|
103
|
|
|
// 'a.b.c', if b is not set, create it as an empty array |
|
104
|
|
|
if (!isset($c[$ar[$i]])) |
|
105
|
|
|
$c[$ar[$i]] = array(); |
|
106
|
|
|
$c = &$c[$ar[$i]]; |
|
107
|
|
|
} |
|
108
|
|
|
// Set the value |
|
109
|
|
|
$c[$ar[$i]] = $val; |
|
110
|
|
|
} |
|
111
|
|
|
} // end of func SetCfg |
|
112
|
|
|
|
|
113
|
|
|
|
|
114
|
|
|
/** |
|
115
|
|
|
* Set default value of global config var $config |
|
116
|
|
|
* |
|
117
|
|
|
* Same with SetCfg() except: SetCfgDefault() will only change setting |
|
118
|
|
|
* if the config key is not setted before. |
|
119
|
|
|
* |
|
120
|
|
|
* @param string $key |
|
121
|
|
|
* @param mixed $val |
|
122
|
|
|
*/ |
|
123
|
|
|
function SetCfgDefault ($key, $val) { |
|
124
|
|
|
if (is_null(GetCfg($key))) |
|
125
|
|
|
SetCfg($key, $val); |
|
126
|
|
|
} // end of func SetCfgDefault |
|
127
|
|
|
|
|
128
|
|
|
|
|
129
|
|
|
// Debug |
|
130
|
|
|
/* |
|
131
|
|
|
require_once('config.default.php'); |
|
132
|
|
|
require_once('fwolflib/func/ecl.php'); |
|
133
|
|
|
ecl(GetCfg('serverid')); |
|
134
|
|
|
ecl(GetCfg('dbserver.default.type')); |
|
135
|
|
|
SetCfg('test.1.2.3', 3); |
|
136
|
|
|
SetCfg('test.1.2.4', 4); |
|
137
|
|
|
ecl(GetCfg('test.1.2.3')); |
|
138
|
|
|
ecl(GetCfg('test.1.2.4')); |
|
139
|
|
|
print_r(GetCfg('dbserver.default')); |
|
140
|
|
|
*/ |
|
141
|
|
|
?> |
|
142
|
|
|
|
When comparing two booleans, it is generally considered safer to use the strict comparison operator.