我正在尝试将配置变量回显到视图中,但我不相信我做对了,但是在这里阅读答案似乎我做对了。
在我的配置文件夹中,我有以下文件:
帐号/googleplus.php
在该文件中,我有我的变量:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
$config['googleplus_client_id'] = "123456789";
在我的控制器中,然后我像这样加载配置文件,然后是视图:
function __construct()
{
parent::__construct();
$this->load->config(array('account/account', 'account/googleplus'));
}
function index()
{
$this->load->view('sign_in');
}
然后在我看来,我像这样回显变量:
<?php echo $this->config->item('googleplus_client_id');
我遇到的问题是它不会回显内容。我是否必须以某种方式将数据传递给视图,还是应该自己解决?
它抛出错误:
配置文件 Array.php 不存在。