PHP数组式访问-ArrayAccess的案例分析

发布时间:2020-11-02 14:42:18 作者:小新
来源:亿速云 阅读:132

PHP数组式访问-ArrayAccess的案例分析?这个问题可能是我们日常学习或工作经常见到的。希望通过这个问题能让你收获颇深。下面是小编给大家带来的参考内容,让我们一起来看看吧!

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

接口内容如下:

ArrayAccess {
    //检查一个偏移位置是否存在 
    abstract public boolean offsetExists ( mixed $offset ); 
    //获取一个偏移位置的值 
    abstract public mixed offsetGet ( mixed $offset ); 
    //设置一个偏移位置的值 
    abstract public void offsetSet ( mixed $offset , mixed $value ); 
    //复位一个偏移位置的值 
    abstract public void offsetUnset ( mixed $offset ); 
}

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

<?php
namespace lib;
use mpf\core\Di;
class config implements \ArrayAccess{

//定义存储数据的数组
   protected $configs;
   public function __construct($configs){
         $this->configs = $configs;
         $configs = \lib\model\Home::getWebConfig();
         foreach( $configs as $config ){
               if( !isset($this->configs[$config['sc_key']]) ){
                   $this->configs[$config['sc_key']] = $config['sc_content'];
               }
         }
   }
   public function get($key){
         if( isset($this->configs[$key]) ){
               return $this->configs[$key];
         }elseif( $key == 'caipiao'){
               $this->configs['caipiao'] = \lib\model\Home::getLcs();  
               return $this->configs[$key];
         }elseif( $key == 'user_money' ){
               if( isset($_SESSION['uid']) ){
                 if( $_SESSION['utype'] == 5 ){
                       $sql = 'select money from inner_user where uid=?';
                 }else{
                       $sql = 'select money from user where uid=?';
                 }
                   $this->configs['user_money'] = \mpf\core\Di::$Di->db->prepare_query($sql,[getUid()])->fetch(\PDO::FETCH_COLUMN);
                   return $this->configs['user_money'];
             }
       }
   }
   public function offsetExists($index){
         return isset($this->configs[$index]);
   }
   public function offsetGet($index){
         return $this->configs[$index];
   }
   public function offsetSet($index,$val){
         $this->configs[$index] = $val;
   }
   public function offsetUnset($index){
         unset($this->configs[$index]);
   }
}

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

配置程序:

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

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

app.php

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

database.php

<?php

return [
    'mysql' => [
        'host' => 'localhost',
        'user' => 'root',
        'password' => '12345678'
    ]
];

3. Config.php实现ArrayAccess

<?php

namespace Config;

class Config implements \ArrayAccess
{
    private $config = [];

    private static $instance;

    private $path;

    private function __construct()
    {
        $this->path = __DIR__."/config/";
    }

    public static function instance()
    {
        if (!(self::$instance instanceof Config)) {
            self::$instance = new Config();
        }
        return self::$instance;
    }
    
    public function offsetExists($offset)
    {
        return isset($this->config[$offset]);
    }
    
    public function offsetGet($offset)
    {
        if (empty($this->config[$offset])) {
            $this->config[$offset] = require $this->path.$offset.".php";
        }
        return $this->config[$offset];
    }

    public function offsetSet($offset, $value)
    {
        throw new \Exception('不提供设置配置');
    }

    public function offsetUnset($offset)
    {
        throw new \Exception('不提供删除配置');
    }
}

$config = Config::instance();

//获取app.php 文件的 name
echo $config['app']['name'].PHP_EOL; //app name

//获取database.php文件mysql的user配置
echo $config['database']['mysql']['user'].PHP_EOL; // root

感谢各位的阅读!看完上述内容,你们对PHP数组式访问-ArrayAccess的案例分析大概了解了吗?希望文章内容对大家有所帮助。如果想了解更多相关文章内容,欢迎关注亿速云行业资讯频道。

推荐阅读:
  1. PHP预定义接口:ArrayAccess
  2. ArrayAccess(数组式访问)接口

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

php ce arrayaccess

上一篇:apache虚拟主机指的是什么意思

下一篇:jsp/servlet会话是什么意思

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》