1
は、次の内容のapplication/config
フォルダで利用可能です。ロードカスタム設定ファイルのCodeIgniterの3
<?php
$config['item_test']='sample config item';
私は、次のエラー
に存在しないtest.phpをコンフィギュレーションファイルを取得します。
CodeIgniterのバージョン:3.1.0
は、次の内容のapplication/config
フォルダで利用可能です。ロードカスタム設定ファイルのCodeIgniterの3
<?php
$config['item_test']='sample config item';
私は、次のエラー
に存在しないtest.phpをコンフィギュレーションファイルを取得します。
CodeIgniterのバージョン:3.1.0
は、アプリケーション/ configフォルダに新しいファイル名test.phpを作成します。
アプリケーション/設定/ test.phpを
<?php
$config['gender'] = array('Male', 'Female');
?>
コントローラ/ filename.php
class Stackoverflow extends CI_Controller{
function __construct() {
parent::__construct();
$this->config->load('test'); //loading of config file
}
function index(){
print_r($this->config->item('gender')); //Calling of config element.
}
}
出力
アレイ([0] =>男性[1 ] =>女性)