DataArray.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | WeChatDeveloper
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://think.ctolog.com
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/WeChatDeveloper
  12. // +----------------------------------------------------------------------
  13. namespace WeChat\Contracts;
  14. use ArrayAccess;
  15. /**
  16. * Class DataArray
  17. * @package WeChat
  18. */
  19. class DataArray implements ArrayAccess
  20. {
  21. /**
  22. * 当前配置值
  23. * @var array
  24. */
  25. private $config = [];
  26. /**
  27. * Config constructor.
  28. * @param array $options
  29. */
  30. public function __construct(array $options)
  31. {
  32. $this->config = $options;
  33. }
  34. /**
  35. * 设置配置项值
  36. * @param string $offset
  37. * @param string|array|null|integer $value
  38. */
  39. public function set($offset, $value)
  40. {
  41. $this->offsetSet($offset, $value);
  42. }
  43. /**
  44. * 获取配置项参数
  45. * @param string|null $offset
  46. * @return array|string|null
  47. */
  48. public function get($offset = null)
  49. {
  50. return $this->offsetGet($offset);
  51. }
  52. /**
  53. * 合并数据到对象
  54. * @param array $data 需要合并的数据
  55. * @param bool $append 是否追加数据
  56. * @return array
  57. */
  58. public function merge(array $data, $append = false)
  59. {
  60. if ($append) {
  61. return $this->config = array_merge($this->config, $data);
  62. }
  63. return array_merge($this->config, $data);
  64. }
  65. /**
  66. * 设置配置项值
  67. * @param string $offset
  68. * @param string|array|null|integer $value
  69. */
  70. public function offsetSet($offset, $value)
  71. {
  72. if (is_null($offset)) {
  73. $this->config[] = $value;
  74. } else {
  75. $this->config[$offset] = $value;
  76. }
  77. }
  78. /**
  79. * 判断配置Key是否存在
  80. * @param string $offset
  81. * @return bool
  82. */
  83. public function offsetExists($offset)
  84. {
  85. return isset($this->config[$offset]);
  86. }
  87. /**
  88. * 清理配置项
  89. * @param string|null $offset
  90. */
  91. public function offsetUnset($offset = null)
  92. {
  93. if (is_null($offset)) {
  94. $this->config = [];
  95. } else {
  96. unset($this->config[$offset]);
  97. }
  98. }
  99. /**
  100. * 获取配置项参数
  101. * @param string|null $offset
  102. * @return array|string|null
  103. */
  104. public function offsetGet($offset = null)
  105. {
  106. if (is_null($offset)) {
  107. return $this->config;
  108. }
  109. return isset($this->config[$offset]) ? $this->config[$offset] : null;
  110. }
  111. }