當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CI_Config::__construct方法代碼示例

本文整理匯總了PHP中CI_Config::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP CI_Config::__construct方法的具體用法?PHP CI_Config::__construct怎麽用?PHP CI_Config::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CI_Config的用法示例。


在下文中一共展示了CI_Config::__construct方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1:

 /**
  * Constructor
  *
  * @access  public
  * @return  void
  */
 function __construct()
 {
     parent::__construct();
     $this->config_path = APPPATH . 'config/config' . EXT;
     $this->database_path = APPPATH . 'config/database' . EXT;
     $this->autoload_path = APPPATH . 'config/autoload' . EXT;
 }
開發者ID:denzilferreira,項目名稱:aware-server,代碼行數:13,代碼來源:MY_config.php

示例2: __construct

 /**
  * Constructor
  *
  */
 public function __construct()
 {
     parent::__construct();
     // Change this path before release.
     $this->config_path = APPPATH . 'config/config' . EXT;
     $this->database_path = APPPATH . 'config/database' . EXT;
     $this->_initialize();
 }
開發者ID:rmdort,項目名稱:adiee,代碼行數:12,代碼來源:EE_Config.php

示例3: switch

 /**
  * Constructor
  *
  * @access	public
  * @return	void
  */
 function __construct()
 {
     parent::__construct();
     $define_path = "";
     if (defined('ENVIRONMENT')) {
         switch (ENVIRONMENT) {
             case 'development':
                 $this->define_path = APPPATH . 'config/development/database' . EXT;
                 break;
             case 'testing':
             case 'production':
                 $this->define_path = APPPATH . 'config/production/database' . EXT;
                 break;
             default:
                 exit('The application environment is not set correctly.');
         }
     }
     $this->config_path = APPPATH . 'config/config' . EXT;
     $this->database_path = $this->define_path;
     $this->autoload_path = APPPATH . 'config/autoload' . EXT;
     $tem_index = getcwd();
     $this->index_path = $tem_index . "/index.php";
 }
開發者ID:Intelnetgs,項目名稱:white,代碼行數:29,代碼來源:MY_Config.php

示例4:

 function __construct()
 {
     parent::__construct();
 }
開發者ID:nuhash,項目名稱:OCMS,代碼行數:4,代碼來源:MY_Config.php

示例5: array

 function __construct()
 {
     parent::__construct();
     $this->_config_paths = array(APPPATH, ARCHPATH);
 }
開發者ID:rip-projects,項目名稱:ark-php,代碼行數:5,代碼來源:MY_Config.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
     log_message('debug', 'Plain_Config Class Initialized');
 }
開發者ID:iweave,項目名稱:unmark,代碼行數:5,代碼來源:Plain_Config.php

示例7: define

 function Config_data()
 {
     parent::__construct();
     $CI =& get_instance();
     define("THEME_FOLDER", "templates/blue");
 }
開發者ID:BersnardC,項目名稱:DROPINN,代碼行數:6,代碼來源:config_data.php

示例8: __construct

 /**
  * Constructor
  *
  * Override the CI_Config constructor and add local path to config paths
  */
 public function __construct()
 {
     parent::__construct();
     $this->_config_paths = array(LOCALAPPPATH, APPPATH);
     log_message('debug', 'CI_Config Class Initialized');
 }
開發者ID:colonia,項目名稱:tomatocart-v2,代碼行數:11,代碼來源:TOC_Config.php

示例9: __construct

 /**
  * Constructor
  *
  */
 public function __construct()
 {
     parent::__construct();
     //2008-04-21 KUNIHARU Tsujioka
     $this->_is_ssl();
 }
開發者ID:cybercog,項目名稱:exambuff,代碼行數:10,代碼來源:EB_Config.php

示例10:

 function __construct()
 {
     parent::__construct();
     global $URI;
 }
開發者ID:ponchov,項目名稱:quizzworld,代碼行數:5,代碼來源:MY_Config.php


注:本文中的CI_Config::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。