[2] ErrorException in File.php line 53

include(/www/wwwroot/zbiso.com/caches/temp/47899c075604bfeabbc7697a685b1e9c.php): failed to open stream: No such file or directory

  1. */
  2. public function read($cacheFile, $vars = [])
  3. {
  4. $this->cacheFile = $cacheFile;
  5. if (!empty($vars) && is_array($vars)) {
  6. // 模板阵列变量分解成为独立变量
  7. extract($vars, EXTR_OVERWRITE);
  8. }
  9. //载入模版缓存文件
  10. include $this->cacheFile;
  11. }
  12. /**
  13. * 检查编译缓存是否有效
  14. * @param string $cacheFile 缓存的文件名
  15. * @param int $cacheTime 缓存时间
  16. * @return boolean
  17. */
  18. public function check($cacheFile, $cacheTime)