public function display($file)
{
$file = APP . '/views/' . $file;
if(is_file($file)) {
$loader = new \Twig\Loader\FilesystemLoader(APP . '/views');
$twig = new \Twig\Environment($loader, [
'cache' => '/path/to/compilation_cache',
'debug' => DEBUG
]);
$template = $twig->load('index.html');
$template->display($this->assign?$this->assign:"");
}
}
不需要引入, 直接就可以用, 可以去掉这行。 可能是因为composer autoload.php已引入
著作权归作者所有。
商业转载请联系作者获得授权,非商业转载请注明出处。
作者:JefskyWong ——程序猿甜品店
链接:https://www.jefsky.com/blog/158
来源:https://www.jefsky.com/