登录  /  注册

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

little bottle
发布: 2019-04-24 14:25:13
转载
2677人浏览过

本文章主要讲述了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 ); 
}
登录后复制

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

<?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[&#39;sc_key&#39;]]) ){
                   $this->configs[$config[&#39;sc_key&#39;]] = $config[&#39;sc_content&#39;];
               }
         }
   }
   public function get($key){
         if( isset($this->configs[$key]) ){
               return $this->configs[$key];
         }elseif( $key == &#39;caipiao&#39;){
               $this->configs[&#39;caipiao&#39;] = \lib\model\Home::getLcs();  
               return $this->configs[$key];
         }elseif( $key == &#39;user_money&#39; ){
               if( isset($_SESSION[&#39;uid&#39;]) ){
                 if( $_SESSION[&#39;utype&#39;] == 5 ){
                       $sql = &#39;select money from inner_user where uid=?&#39;;
                 }else{
                       $sql = &#39;select money from user where uid=?&#39;;
                 }
                   $this->configs[&#39;user_money&#39;] = \mpf\core\Di::$Di->db->prepare_query($sql,[getUid()])->fetch(\PDO::FETCH_COLUMN);
                   return $this->configs[&#39;user_money&#39;];
             }
       }
   }
   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 [   
 &#39;name&#39; => &#39;app name&#39;,   
  &#39;version&#39; => &#39;v1.0.0&#39;
];
登录后复制

database.php

<?php

return [
    &#39;mysql&#39; => [
        &#39;host&#39; => &#39;localhost&#39;,
        &#39;user&#39; => &#39;root&#39;,
        &#39;password&#39; => &#39;12345678&#39;
    ]
];
登录后复制

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(&#39;不提供设置配置&#39;);
    }

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

$config = Config::instance();

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

//获取database.php文件mysql的user配置
echo $config[&#39;database&#39;][&#39;mysql&#39;][&#39;user&#39;].PHP_EOL; // root
登录后复制

相关教程:PHP视频教程

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

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
来源:博客园网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
关于CSS思维导图的课件在哪? 课件
凡人来自于2024-04-16 10:10:18
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号