我正在编写一个MVC框架(用于学习和发现,而不是实际打算使用它),我遇到了一个小问题。
我有config.php
个文件:
$route['default'] = 'home';
$db['host'] = 'localhost';
$db['name'] = 'db-name';
$db['user'] = 'user-name';
$db['pass'] = 'user-pass';
$enc_key = 'enc_key'
我通过我的boot
类中的静态方法加载这些:
public static function getConfig($type) {
/**
* static getConfig method gets configuration data from the config file
*
* @param string $type - variable to return from the config file.
* @return string|bool|array - the specified element from the config file, or FALSE on failure
*/
if (require_once \BASE . 'config.php') {
if (isset(${$type})) {
return ${$type};
} else {
throw new \Exception("Variable '{$type}' is undefined in " . \BASE . "config.php");
return FALSE;
}
} else {
throw new \Exception("Can not load config file at: " . \BASE . 'config.php');
return FALSE;
}
}
然后像这样加载路线:
public function routeURI($uri) {
...
$route = $this::getConfig('route');
...
}
捕获异常:
"Variable 'route' is undefined in skeleton/config.php"
现在,如果我像{/ p>那样制作config.php
文件,它可以正常工作
$config['route']['default'] = 'home'
...
并改变方法中的两行:
if (isset($config[$type])) {
return $config[$type];
我也尝试使用$$type
代替${$type}
来解决同样的问题。
我有什么东西可以忽略吗?
答案 0 :(得分:1)
如上所述,此函数只能被调用一次,因为它使用require_once
,并且在后续调用中,您将不再引入config.php
中定义的局部变量。我怀疑您第二次拨打getConfig()
时收到此错误。