config = \config('view'); $this->engine = Engine::instance($this->config); return $this; } /** * 编译文件 * @param string $filename * @return string */ private function compile($filename) { $compileFileName = $this->config['compile_path'] . md5($filename) . '.php'; if (!file_exists($compileFileName) || DEBUG === true) { if (!is_dir($this->config['compile_path'])) { mkdir($this->config['compile_path'], 0755, true); } if (isset($this->config['tagLib']) && !empty($this->config['tagLib'])) { foreach ($this->config['tagLib'] as $prefix => $className) { $this->engine->loadTaglib($prefix, $className); } } $content = $this->engine->compile(file_get_contents($filename)); file_put_contents($compileFileName, $content); } return $compileFileName; } /** * 是否开启缓存或设置缓存时间 * @param bool $status */ public function cache($status) { $this->cache = $status; } /** * 缓存文件 * @param string $filename * @param array $params * @param int $cacheTime * @return string * @throws \Exception */ private function cacheFile($filename, $params, $cacheTime) { $cache = Cache::instance($this->config['cache_path']); extract($params); // 获取文件内容 ob_start(); require $filename; $content = ob_get_contents(); ob_clean(); // 写入文件缓存 $ident = view_cache_ident(); if ($cache->set($ident, $content, $cacheTime)) { return $cache->get($ident); } else { throw new \Exception('无法创建缓存文件'); } } /** * 渲染文件并返回内容 * @param string $file * @param array $params * @param int|bool $cache * @return bool|false|mixed|string * @throws \Exception */ public function fetch($file, $params, $cache) { $filename = $this->config['path'] . $file . '.' . $this->config['ext']; if (file_exists($filename)) { $filename = $this->compile($filename); if ($this->cache || $cache) { $cacheTime = $this->config['expire']; if (!is_bool($cache) || !is_bool($this->cache)) { if ($cache > 0) { $cacheTime = $cache; } elseif ($this->cache > 0) { $cacheTime = $this->cache; } } return $this->cacheFile($filename, $params, $cacheTime); } else { extract($params); ob_start(); require $filename; $content = ob_get_contents(); ob_clean(); return $content; } } else { throw new \Exception("模板文件 $file 不存在"); } } }