我們有時候在CI框架中需要自定義配置文件,那要怎麼處理呢?下面就給你介紹處理的辦法。
配置文件config/expert.php
復制代碼 代碼如下:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/**
* 專家配置文件
*
* @author xxx
* @version $Id: expert.php v 1.0 2012/5/31 14:41:00 xxx $
* @package ask.xxx.com
* @copyright 1997-2012 www.xxx.com
*/
// 專家ID
$config['expertid'] = array('0' => '124', '1' => '81', '2' => '136');
?>
獲取配置數據示例
$this->config->load('expert', TRUE);
$expertid = $this->config->item('expertid', 'expert');