本文整理匯總了PHP中core\Config::getConfByKey方法的典型用法代碼示例。如果您正苦於以下問題:PHP Config::getConfByKey方法的具體用法?PHP Config::getConfByKey怎麽用?PHP Config::getConfByKey使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類core\Config
的用法示例。
在下文中一共展示了Config::getConfByKey方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __construct
/**
* __construct
*
* @desc 構造器
* @access private
* @return void
*/
public function __construct($dbConfKey = '', $isRetry = false, $retryNum = 3, $retrySleep = 1)
{
if (!empty($dbConfKey)) {
$this->dbConf = Config::getConfByKey('database', $dbConfKey);
if (!empty($this->dbConf)) {
$this->retryFun('connectDb', $this->dbConf);
}
}
$this->isRetry = (bool) $isRetry;
$this->retryNum = (int) $retryNum;
$this->retrySleep = (int) $retrySleep;
}
示例2: __construct
/**
* __construct
*
* @param string $dbConfKey databases配置文件裏的數組key
* @param bool $debug 是否打開debug模式,默認關閉,打開後會記錄執行的SQL語句
* @access private
* @return void
*/
public function __construct($dbConfKey = '', $debug = false)
{
if (!empty($dbConfKey)) {
$this->dbConf = Config::getConfByKey('database', $dbConfKey);
if (!empty($this->dbConf)) {
$this->connectDb($this->dbConf);
}
}
$this->debug = $debug;
if (true === $this->debug) {
$this->debugLogObject = new Log(DB_DEBUG_FILE, 'd');
$this->debugLogObject->setCommonMsg(array('type' => 'sql_debug'));
}
}