您的位置:首页 > 其它

15.自动加载配置

2016-03-07 22:09 330 查看
自动加载配置





1. 在PHP 中使用 ArrayAccess 实现配置文件的加载

Config.php

<?php
namespace IMooc;

class Config implements \ArrayAccess
{
//$path,配置文件所在的目录
protected $path;

//$configs,用来保存已经加载过的配置
protected $configs = array();

function __construct($path)
{
$this->path = $path;
}

function offsetGet($key)
{
//先判断这个项是否加载,如果不存在,从文件中加载
if (empty($this->configs[$key]))
{
$file_path = $this->path.'/'.$key.'.php';
$config = require $file_path;
$this->configs[$key] = $config;
}
return $this->configs[$key];
}

function offsetSet($key, $value)
{
throw new \Exception("cannot write config file.");
}

function offsetExists($key)
{
return isset($this->configs[$key]);
}

function offsetUnset($key)
{
unset($this->configs[$key]);
}
}


controller.php

<?php

$config = array(
'home' => array(
'decorator' => array(
'IMooc\Decorator\Template',
),
),
'default' => 'hello ,world',
);

return $config;


index.php

$config = new \IMooc\Config(__DIR__ . '/configs');
var_dump($config['controller']);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: