##**view方法**
###*获得*
* * * * *
继承msqphpcoreviewView对象
###*模版变量操作*
* * * * *
//获得
$this->get(string $key) : miexd;
//是否存在
$this->exists(string $key) : bool;
//删除
$this->delete(string $key) : void;
//设置,别名$this->assign
$this->set(string $key, $value='', bool $cache=false, bool html =false) : void;
//或者依次排列以为数组
$this->set([
'key'=>$key,
'value'=>$value,
'cache'=>bool,
'type'=>bool
]);
###*组件模版操作*
* * * * *
//需要组件(存在取缓存,不存在进行缓存
$this->display(string $file_name, int $expire = 86400) :self;
//组件是否存在
$this->displayed(string $file_name) : bool;
//拼装
$this->assemble(string $file_name, int $expire $last = true) : self;
//展示
$this->show(string $file_name) : self;
//是否展示过
$this->showed(string $file_name) : bool;
//静态页面
$this->static(int $expire = 3600) : self;



