lithium\template\view\adapter\File::offsetSet PHP 메소드

offsetSet() 공개 메소드

Part of ArrayAccess. $file['bar'] = 'baz'; $file->offsetSet('bar', 'baz');
public offsetSet ( string $offset, mixed $value ) : void
$offset string Key / variable name to check.
$value mixed Value you wish to set to `$offset`.
리턴 void
    public function offsetSet($offset, $value)
    {
        $this->_data[$offset] = $value;
    }