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


PHP CFactory::loadConfig方法代碼示例

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


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

示例1: __construct

 /**
  * @param array $config
  */
 function __construct($config = array())
 {
     $this->_config = array_merge($this->_config, $config);
     if (empty($this->_config)) {
         $this->_config = CFactory::loadConfig('sessionConfig');
     }
 }
開發者ID:9618211,項目名稱:simple-php-framework,代碼行數:10,代碼來源:CHttpSession.php

示例2: __construct

 private function __construct($config)
 {
     if (!$config) {
         $config = CFactory::loadConfig('memcache');
     }
     $this->config = array_merge($this->config, $config);
     $this->memcache = new Memcache();
     foreach ($this->config['servers'] as $es) {
         $this->memcache->addserver($es['host'], $es['port']);
     }
 }
開發者ID:9618211,項目名稱:simple-php-framework,代碼行數:11,代碼來源:Cmemcache.php

示例3: getInstance

 /**
  * @param array $cfg
  * @return CRedis
  */
 static function getInstance($cfg = array(), $reconnect = false)
 {
     if (!self::$_config) {
         if (!$cfg) {
             $cfg = CFactory::loadConfig('redis');
         } else {
             self::$_config = $cfg;
         }
     }
     if (null == self::$_instacne) {
         self::$_instacne = new self($cfg, $reconnect);
     }
     return self::$_instacne;
 }
開發者ID:9618211,項目名稱:simple-php-framework,代碼行數:18,代碼來源:CRedis.php

示例4: define

<?php

/**
 * a demo for index php
 */
define('FRAMEWORK_ROOT', dirname(__FILE__) . '/../framework');
define('APP_ROOT', dirname(__FILE__) . '/../app');
require_once FRAMEWORK_ROOT . '/CApp.php';
//include the app config file
CFactory::loadConfig();
$app = CApp::getInstance();
//注入extension模塊
if ($extensions = CFactory::loadConfig('extensions')) {
    if (!empty($extensions['filter'])) {
        //filter
        foreach ($extensions['filter'] as $efilter) {
            $app->_filter->registerFilter(new $efilter());
        }
    }
    if (!empty($extensions['router'])) {
        //router
        $app->_router = new $extensions['router']();
    }
}
$app->run();
開發者ID:9618211,項目名稱:simple-php-framework,代碼行數:25,代碼來源:index.php

示例5: reConnectDb

 /**
  * 重新實例化db
  */
 function reConnectDb()
 {
     $dbconfig = CFactory::loadConfig('db');
     $this->_db = null;
     $this->_db = $this->getDb($dbconfig, true);
 }
開發者ID:9618211,項目名稱:simple-php-framework,代碼行數:9,代碼來源:DbDAO.php

示例6: responseRedirect

 /**
  * 跳轉
  */
 function responseRedirect()
 {
     if ($this->_config['urlWhiteList']) {
         $urlWhiteList = CFactory::loadConfig('urlWhiteList', 'whiteList/url.php');
         if (!in_array($this->_ret, $urlWhiteList)) {
             throw new Exception('redirect url not allowd');
         }
     }
     header('Location:' . $this->_ret);
 }
開發者ID:9618211,項目名稱:simple-php-framework,代碼行數:13,代碼來源:CHttpAction.php


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