PHP数组式访问-ArrayAccess示例解析

本文章主要讲述了PHP中的数组式访问,具有一定参考价值,感兴趣的朋友可以了解一下,希望能帮助到你。

以前对ArrayAccess不是很熟悉,现在整理下下有关ArrayAccess相关的知识,ArrayAccess接口就是提供像访问数组一样访问对象的能力的接口。

接口内容如下:

  1. ArrayAccess {
  2.     //检查一个偏移位置是否存在
  3.     abstract public boolean offsetExists ( mixed $offset );
  4.     //获取一个偏移位置的值
  5.     abstract public mixed offsetGet ( mixed $offset );
  6.     //设置一个偏移位置的值
  7.     abstract public void offsetSet ( mixed $offset , mixed $value );
  8.     //复位一个偏移位置的值
  9.     abstract public void offsetUnset ( mixed $offset );
  10. }

项目中使用,获取网站配置:

  1. <?php
  2. namespace lib;
  3. use mpf\core\Di;
  4. class config implements \ArrayAccess{
  5. //定义存储数据的数组
  6. protected $configs;
  7. public function __construct($configs){
  8.   $this->configs = $configs;
  9.   $configs = \lib\model\Home::getWebConfig();
  10.   foreach( $configs as $config ){
  11.     if( !isset($this->configs[$config['sc_key']]) ){
  12.     $this->configs[$config['sc_key']] = $config['sc_content'];
  13.     }
  14.   }
  15. }
  16. public function get($key){
  17.   if( isset($this->configs[$key]) ){
  18.     return $this->configs[$key];
  19.   }elseif( $key == 'caipiao'){
  20.     $this->configs['caipiao'] = \lib\model\Home::getLcs();
  21.     return $this->configs[$key];
  22.   }elseif( $key == 'user_money' ){
  23.     if( isset($_SESSION['uid']) ){
  24.   if( $_SESSION['utype'] == 5 ){
  25.     $sql = 'select money from inner_user where u;
  26.   }else{
  27.     $sql = 'select money from user where u;
  28.   }
  29.     $this->configs['user_money'] = \mpf\core\Di::$Di->db->prepare_query($sql,[getUid()])->fetch(\PDO::FETCH_COLUMN);
  30.     return $this->configs['user_money'];
  31.   }
  32. }
  33. }
  34. public function offsetExists($index){
  35.   return isset($this->configs[$index]);
  36. }
  37. public function offsetGet($index){
  38.   return $this->configs[$index];
  39. }
  40. public function offsetSet($index,$val){
  41.   $this->configs[$index] = $val;
  42. }
  43. public function offsetUnset($index){
  44.   unset($this->configs[$index]);
  45. }
  46. }

这样可以使用config对象来直接访问配置信息内容。

配置程序:

我们可以通过ArrayAccess利用配置文件来控制程序。

1. 在项目更目录下创建一个config目录

2. 在config目录下创建相应的配置文件,比如app.php 和 database.php。文件程序如下

app.php

  1. <?phpreturn [
  2. 'name' => 'app name',
  3. 'version' => 'v1.0.0'
  4. ];

database.php

  1. <?php
  2. return [
  3. 'mysql' => [
  4. 'host' => 'localhost',
  5. 'user' => 'root',
  6. 'password' => '12345678'
  7. ]
  8. ];

3. Config.php实现ArrayAccess

  1. <?php
  2. namespace Config;
  3. class Config implements \ArrayAccess
  4. {
  5. private $config = [];
  6. private static $instance;
  7. private $path;
  8. private function __construct()
  9. {
  10. $this->path = __DIR__."/config/";
  11. }
  12. public static function instance()
  13. {
  14. if (!(self::$instance instanceof Config)) {
  15. self::$instance = new Config();
  16. }
  17. return self::$instance;
  18. }
  19. public function offsetExists($offset)
  20. {
  21. return isset($this->config[$offset]);
  22. }
  23. public function offsetGet($offset)
  24. {
  25. if (emptyempty($this->config[$offset])) {
  26. $this->config[$offset] = require $this->path.$offset.".php";
  27. }
  28. return $this->config[$offset];
  29. }
  30. public function offsetSet($offset, $value)
  31. {
  32. throw new \Exception('不提供设置配置');
  33. }
  34. public function offsetUnset($offset)
  35. {
  36. throw new \Exception('不提供删除配置');
  37. }
  38. }
  39. $config = Config::instance();
  40. //获取app.php 文件的 name
  41. echo $config['app']['name'].PHP_EOL; //app name
  42. //获取database.php文件mysql的user配置
  43. echo $config['database']['mysql']['user'].PHP_EOL; // root