123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?php
- namespace Yansongda\Pay\Support;
- use ArrayAccess;
- use Yansongda\Pay\Exceptions\InvalidArgumentException;
- class Config implements ArrayAccess
- {
- /**
- * @var array
- */
- protected $config;
- /**
- * Config constructor.
- *
- * @param array $config
- */
- public function __construct(array $config = [])
- {
- $this->config = $config;
- }
- /**
- * get a config.
- *
- * @author JasonYan <me@yansongda.cn>
- *
- * @param string $key
- * @param string $default
- *
- * @return mixed
- */
- public function get($key = null, $default = null)
- {
- $config = $this->config;
- if (is_null($key)) {
- return $config;
- }
- if (isset($config[$key])) {
- return $config[$key];
- }
- foreach (explode('.', $key) as $segment) {
- if (!is_array($config) || !array_key_exists($segment, $config)) {
- return $default;
- }
- $config = $config[$segment];
- }
- return $config;
- }
- /**
- * set a config.
- *
- * @author JasonYan <me@yansongda.cn>
- *
- * @param string $key
- * @param array $value
- */
- public function set(string $key, $value)
- {
- if ($key == '') {
- throw new InvalidArgumentException('Invalid config key.');
- }
- // 只支持三维数组,多余无意义
- $keys = explode('.', $key);
- switch (count($keys)) {
- case '1':
- $this->config[$key] = $value;
- break;
- case '2':
- $this->config[$keys[0]][$keys[1]] = $value;
- break;
- case '3':
- $this->config[$keys[0]][$keys[1]][$keys[2]] = $value;
- break;
- default:
- throw new InvalidArgumentException('Invalid config key.');
- }
- return $this->config;
- }
- /**
- * [offsetExists description].
- *
- * @author JasonYan <me@yansongda.cn>
- *
- * @param string $offset
- *
- * @return bool
- */
- public function offsetExists($offset)
- {
- return array_key_exists($offset, $this->config);
- }
- /**
- * [offsetGet description].
- *
- * @author JasonYan <me@yansongda.cn>
- *
- * @param string $offset
- *
- * @return mixed
- */
- public function offsetGet($offset)
- {
- return $this->get($offset);
- }
- /**
- * [offsetSet description].
- *
- * @author JasonYan <me@yansongda.cn>
- *
- * @param string $offset
- * @param string $value
- *
- * @return array
- */
- public function offsetSet($offset, $value)
- {
- $this->set($offset, $value);
- }
- /**
- * [offsetUnset description].
- *
- * @author JasonYan <me@yansongda.cn>
- *
- * @param string $offset
- *
- * @return array
- */
- public function offsetUnset($offset)
- {
- $this->set($offset, null);
- }
- }
|