本文整理汇总了PHP中Zend\Config\Config::offsetExists方法的典型用法代码示例。如果您正苦于以下问题:PHP Config::offsetExists方法的具体用法?PHP Config::offsetExists怎么用?PHP Config::offsetExists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend\Config\Config
的用法示例。
在下文中一共展示了Config::offsetExists方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: convert
/**
* @param String $string
*
* @return String
* @author Fabian Köstring
*/
private function convert(string $string)
{
if (!$this->config->offsetExists('chars')) {
return $string;
}
$chars = $this->config->get('chars')->toArray();
$from = array_keys($chars);
$to = array_values($chars);
return preg_replace($from, $to, $string);
}
示例2: getConfigList
/**
* Get list items from config
*
* @param String $configKey
* @param Boolean $toLower
* @param Boolean $trim
* @param String $delimiter
* @return String[]
*/
protected function getConfigList($configKey, $trim = true, $delimiter = ',')
{
$data = array();
if ($this->config->offsetExists($configKey)) {
$configValue = $this->config->get($configKey);
$data = explode($delimiter, $configValue);
if ($trim) {
$data = array_map('trim', $data);
}
}
return $data;
}
示例3: setOptions
/**
* Set options
*
* @param Config $options Options
*/
protected function setOptions(Config $options)
{
if ($options->offsetExists('name')) {
$this->setName($options->get('name'));
}
if ($options->offsetExists('description')) {
$this->setDescription($options->get('description'));
}
if ($options->offsetExists('fields')) {
$this->setFields($options->get('fields'));
}
}