各类知识收集,PHP技术分享与解决方案各类知识收集,PHP技术分享与解决方案各类知识收集,PHP技术分享与解决方案

Str Tom,为分享PHP技术和解决方案,贡献一份自己的力量!
收藏本站(不迷路),每天更新好文章!
当前位置:首页 > CMS教程 > PHP

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

管理员 2023-09-05
PHP
151

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

内容导读

收集整理的这篇技术教程文章主要介绍了PHP数组式访问-ArrayAccess示例解析,小编现在分享给大家,供广大互联网技能从业者学习和参考。文章包含3165字,纯文字阅读大概需要5分钟

内容图文

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

  以前对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 ); }

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

<?phpnamespace lib;use mpfcoreDi;class config implements ArrayAccess{//定义存储数据的数组   protected $configs;   public function __construct($configs){         $this->configs = $configs;         $configs = libmodelHome::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'] = libmodelHome::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'] = mpfcoreDi::$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

<?phpreturn [    'mysql' => [        'host' => 'localhost',        'user' => 'root',        'password' => '12345678'    ]];

3. Config.php实现ArrayAccess

<?phpnamespace 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 文件的 nameecho $config['app']['name'].PHP_EOL; //app name//获取database.php文件mysql的user配置echo $config['database']['mysql']['user'].PHP_EOL; // root

相关教程:PHP视频教程

以上就是PHP数组式访问-ArrayAccess示例解析的详细内容,更多请关注Gxl网其它相关文章!

内容总结

以上是为您收集整理的PHP数组式访问-ArrayAccess示例解析全部内容,希望文章能够帮你解决PHP数组式访问-ArrayAccess示例解析所遇到的程序开发问题。 如果觉得技术教程内容还不错,欢迎将网站推荐给程序员好友。

内容备注

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

扫码关注

qrcode

QQ交谈

回顶部