Horde_Config::_defaultRaw PHP 메소드

_defaultRaw() 보호된 메소드

It does NOT return the actual value, but the PHP expression as used in the configuration file.
protected _defaultRaw ( string $ctx, mixed $default ) : mixed
$ctx string A string representing the key of the configuration array to return.
$default mixed The default value to return if the key wasn't found.
리턴 mixed Either the value of the configuration file's requested key or the default value if the key wasn't found.
    protected function _defaultRaw($ctx, $default)
    {
        list($ptr, ) = $this->__defaultRaw($ctx, $default);
        return $ptr;
    }