CodeIgniter非常新,尝试创建自定义配置文件以将特殊变量加载到我的应用程序中。
在application/config/
我创建了custom.php
并将以下代码放在该文件中:
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
$gender = array ('male','female');
?>
然后我打开application/config/autoload
并更改了以下代码:
$autoload['config'] = array();
/* TO: */
$autoload['config'] = array('custom');
我刷新我的应用程序并看到此错误:
Your application/config/custom.php file does not appear to contain a valid configuration array.
我打开了一些默认的配置文件但看不到配置数组?我做错了什么?
答案 0 :(得分:31)
使用
$config['gender']= array ('male','female');
而不是
$gender = array ('male','female');
用于获取配置项
$this->config->item('item_name');
item_name
是您要检索的$config
数组索引。
答案 1 :(得分:7)
创建自定义配置文件: 在“application / config /”下添加一个名为“custom_config.php”的新文件(或给出任何名称)并添加以下代码
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
//adding config items.
$config['gender'] = array('female', 'male');
加载自定义配置文件: - 创建自定义配置文件后,我们需要加载它获取它的项目。对于加载自定义配置,我们有两种方式
***手动加载: - 我们可以在控制器/模型中手动加载配置文件,如
$this->config->load('custom_config'); //or instead your file name.
***自动加载: - 对于自动加载配置文件,请转到“application / config / autoload.php”并在$ autoload ['config']中添加代码
$autoload['config'] = array('custom_config'); //or instead your file name.
答案 2 :(得分:0)
/path/to/codeigniter/application/config/custom.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$config['server'] = array (
'host' => 'example.com',
'public_ip' => '93.184.216.34'
);
?>
这可以在模型或控制器内部完成。
// load the configuration file
$this->config->load('custom');
// retrieve the content of a specific configuration
$server = $this->config->item('server');
// $server is now set
echo $server['host']; // example.com