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

offsetUnset() 공개 메소드

Part of ArrayAccess. unset($file['bar']); $file->offsetUnset('bar');
public offsetUnset ( string $offset ) : void
$offset string Key / variable name to check.
리턴 void
    public function offsetUnset($offset)
    {
        unset($this->_data[$offset]);
    }