template = $template->run(); } /** * 是否开启页面静态缓存 * @param bool $status */ public function cache($status) { $this->template->cache($status); } /** * 传递参数 * @param string $name * @param mixed $value */ public function param($name, $value) { $this->param[$name] = $value; } /** * 获取视图 * @param string $file * @param array $param * @param int|bool $cache * @return mixed */ public function fetch($file, $param, $cache) { $param = array_merge($param, $this->param); return $this->template->fetch($file, $param, $cache); } }