坑我也踩到了, 然后我看了看是display方法里面的問題.
大家找到display方法.
把里面的
$file= APP.'/views/'.$file;if(is_file($file)){
改成
$path = APP.'/views/'.$file; if(is_file($path)){
把
$template = $twig->load('index.html');
改成
$template = $twig->load($file);
?
不用謝, 我是雷鋒. 哈哈