Phergie_Config::offsetSet PHP 메소드

offsetSet() 공개 메소드

Sets the value of a configuration setting.
또한 보기: ArrayAccess::offsetSet()
public offsetSet ( string $offset, mixed $value ) : void
$offset string Configuration setting name
$value mixed New setting value
리턴 void
    public function offsetSet($offset, $value)
    {
        $this->settings[$offset] = $value;
    }