YunpianConf.php
1.5 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
<?php
namespace Yunpian\Sdk;
/**
*
* @author dzh
* @since 1.0
*/
class YunpianConf implements Constant\YunpianConstant {
/**
*
* @var array
*/
private $conf = [];
/**
* to upsert $conf
*
* @param string $apikey
* @param array $conf
* @return \Yunpian\Sdk\YunpianConf
*/
function with($apikey, array $conf = []) {
if (!empty($conf)) foreach ($conf as $key => $value) {
$this->conf[$key] = $value;
}
if (isset($apikey)) $this->conf[self::YP_APIKEY] = $apikey;
return $this;
}
/**
* load yunpian.ini to initialize YunpianConf firstly:
* <p>
*
* </p>
*
* @return Yunpian\Sdk\YunpianConf
*/
function init() {
if (is_null($this->conf)) {
$this->conf = [];
}
$yp = parse_ini_file("yunpian.ini");
foreach ($yp as $key => $value) {
$this->conf[$key] = $value;
}
return $this;
}
/**
*
* @param string $key
* @param mixed $defval
* @return mixed
*/
function conf($key = null, $defval = null) {
if (is_null($key)) return $this->conf;
$val = $this->conf[$key];
return is_null($val) ? $defval : $val;
}
/**
*
* @return string
*/
function apikey() {
return $this->conf[self::YP_APIKEY];
}
}