2016-07-29 6 views
1

は、次の内容のapplication/configフォルダで利用可能です。ロードカスタム設定ファイルのCodeIgniterの3

<?php 

$config['item_test']='sample config item'; 

私は、次のエラー

に存在しないtest.phpをコンフィギュレーションファイルを取得します。

CodeIgniterのバージョン:3.1.0

答えて

3

は、アプリケーション/ 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 ] =>女性)

関連する問題