本文整理汇总了PHP中AppConfig::getConfigValue方法的典型用法代码示例。如果您正苦于以下问题:PHP AppConfig::getConfigValue方法的具体用法?PHP AppConfig::getConfigValue怎么用?PHP AppConfig::getConfigValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AppConfig
的用法示例。
在下文中一共展示了AppConfig::getConfigValue方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getValue
/**
* Get the configuration value
* @param string $key key of the configuration key/value pair
* @return mixed value of the configuration key/value pair
*/
public function getValue($key)
{
// is this config value stored in the db?
$db_value_config = AppConfig::getConfigValue($key);
$value = null;
$value = isset($this->config[$key]) ? $this->config[$key] : null;
/*
Profiler::debugPoint(false,__METHOD__, __FILE__, __LINE__);
var_dump($db_value_config);
if ($db_value_config) {
$option_dao = DAOFactory::getDAO("OptionDAO");
$db_value = $option_dao->getOptionValue(OptionDAO::APP_OPTIONS, $key, false );
$value = $db_value ? $db_value : $db_value_config['default'];
// convert db text booleans if needed
if ($value == 'false') {
$value = false;
} else if ($value == 'true') {
$value = true;
}
} else {
// if not a db config value, get from config file
$value = isset($this->config[$key]) ? $this->config[$key] : null;
}
*/
return $value;
}
示例2: getValue
/**
* Get the configuration value
* @param string $key key of the configuration key/value pair
* @return mixed value of the configuration key/value pair
*/
public function getValue($key)
{
// is this config value stored in the db?
$db_value_config = AppConfig::getConfigValue($key);
$value = null;
if ($db_value_config) {
$option_dao = DAOFactory::getDAO("OptionDAO");
$db_value = $option_dao->getOptionValue(OptionDAO::APP_OPTIONS, $key, true);
$value = $db_value ? $db_value : $db_value_config['default'];
// convert db text booleans if needed
if ($value == 'false') {
$value = false;
} else {
if ($value == 'true') {
$value = true;
}
}
} else {
// if not a db config value, get from config file
$value = isset($this->config[$key]) ? $this->config[$key] : null;
}
return $value;
}