gpt4 book ai didi

php - codeigniter 的自定义配置文件

转载 作者:IT王子 更新时间:2023-10-28 23:57:03 27 4
gpt4 key购买 nike

对 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.

我打开了一些默认配置文件,但没有看到配置数组?我做错了什么?

最佳答案

使用

$config['gender']= array ('male','female');

而不是

$gender = array ('male','female');

用于获取配置项

$this->config->item('item_name');

其中 item_name 是您要检索的 $config 数组索引。

文档:CodeIgniter User Guide 2.x CodeIgniter User Guide 3.x

关于php - codeigniter 的自定义配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20810891/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com