ArrayAccess之像laravel框架一样读取配置文件

在各种框架中,都可以看见它们很方便的读取配置文件,就比如ThinkPHP,laravel。它们的配置文件的格式类似如下:

<?php
return [
    'connections' => [
        'mysql' => [
            'driver' => 'mysql',
            'charset' => 'utf8mb4',
            'collation' => 'utf8mb4_unicode_ci',
            'prefix' => '',
            'strict' => true,
            'engine' => null,
        ],
    ]
];

然后一个函数config('文件名.connections.mysql.driver')就可以读取值。这靠得是我们PHP内置的预定义接口——ArrayAccess。

只要你的类实现了这个预定义接口,便可以使用数组的方式访问类。这样说也许不好理解,让我们来实现像laravel一样读取配置文件吧。

<?php

class Config implements ArrayAccess
{
    private $path;
    private $config = [];
    private static $install;

    private function __construct()
    {
        //定义配置文件处于当前目录下的config文件夹中
        $this->path = __DIR__.'/config/';
    }

    //返回单例
    public static function install()
    {
        if (! self::$install) {
            self::$install = new self();
        }
        return self::$install;
    }

    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('could not set');
    }

    public function offsetUnset($offset)
    {
        throw new Exception('could not unset');
    }
}

function config($keys)
{
    $config = Config::install();
    $keysArray = explode('.', $keys);
    $config = $config[$keysArray[0]];
    unset($keysArray[0]);
    foreach ($keysArray as $key) {
        $config = $config[$key];
    }
    return $config;
}
echo config('config.debug');

在当前文件夹中建立config文件夹,用config函数便可以读取各种配置了。

当然,强大的ArrayAccess接口还有更加强大的实现,原理还是那句话,实现了ArrayAccess接口,你的类,便提供了数组访问的能力。

 

转载于:https://www.cnblogs.com/tianjiankun/p/8679835.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
PHP 中,ArrayAccess 是一个接口,它定义了一些方法,可以让对象像数组一样被访问。也就是说,如果一个类实现了 ArrayAccess 接口,那么我们就可以像访问数组一样来访问这个对象的属性。 ArrayAccess 接口中定义了四个方法,它们分别是: 1. offsetExists($offset):用于判断一个偏移位置是否存在; 2. offsetGet($offset):用于获取一个偏移位置的值; 3. offsetSet($offset, $value):用于设置一个偏移位置的值; 4. offsetUnset($offset):用于删除一个偏移位置。 通过实现这四个方法,我们就能够像操作数组一样操作对象了。例如: ``` class MyArray implements ArrayAccess { private $container = array(); public function offsetSet($offset, $value) { $this->container[$offset] = $value; } public function offsetExists($offset) { return isset($this->container[$offset]); } public function offsetUnset($offset) { unset($this->container[$offset]); } public function offsetGet($offset) { return isset($this->container[$offset]) ? $this->container[$offset] : null; } } //使用 $obj = new MyArray(); $obj['name'] = 'Tom'; //设置一个偏移位置的值 echo $obj['name']; //获取一个偏移位置的值 unset($obj['name']); //删除一个偏移位置 echo $obj['name']; //尝试获取一个不存在的偏移位置的值 ``` 注意,实现 ArrayAccess 接口并不会让对象本身变成一个数组,而只是让对象的属性可以像数组一样被访问。如果你需要对一个类的实例进行数组操作,那么你需要将这个类实现 ArrayAccess 接口之后,将它的实例转换成数组。例如: ``` $obj = new MyArray(); $array = (array)$obj; $array['name'] = 'Tom'; echo $array['name']; ``` 总之,ArrayAccess 接口在 PHP 中的作用就是让对象可以像数组一样被访问,提供了一种方便、简洁的面向对象编程方式。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值