Phergie_Config::offsetExists PHP 메소드

offsetExists() 공개 메소드

Checks to see if a configuration setting is assigned a value.
또한 보기: ArrayAccess::offsetExists()
public offsetExists ( string $offset ) : boolean
$offset string Configuration setting name
리턴 boolean TRUE if the setting has a value, FALSE otherwise
    public function offsetExists($offset)
    {
        return isset($this->settings[$offset]);
    }