lithium\template\view\adapter\File::offsetUnset PHP Méthode

offsetUnset() public méthode

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