php使用twig模版引擎缓存问题
2018-12-15 本文已影响0人
并戎徧覆
twig官网:https://twig.symfony.com/
安装
composer require "twig/twig:^2.0"
缓存问题
官网示例在twig2.0以上版本,文件缓存不生效,发现twig的【自动更新缓存】是默认关闭的,优化后的代码
use Twig\Loader\FilesystemLoader;
use Twig\Environment;
$loader = new FilesystemLoader('/path/to/templates');
$twig = new Environment($loader, array(
'cache' => '/path/to/compilation_cache',
'auto_reload' => true, //根据文件更新时间,自动更新缓存
'debug' => true
));
echo $twig->render('index.twig', ['user' => 'Bingyuan']);