当前位置: 首页>>代码示例>>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;未经允许,请勿转载。