我想知道如何从它的完整路径加载模板(如FILE常量给出)。
实际上,您必须像这样为模板设置“根”路径:
require_once '/path/to/lib/Twig/Autoloader.php';
Twig_Autoloader::register();
$loader = new Twig_Loader_Filesystem('/path/to/templates');
$twig = new Twig_Environment($loader, array(
'cache' => '/path/to/compilation_cache',
));
接着 :
$template = $twig->loadTemplate('index.html');
echo $template->render(array('the' => 'variables', 'go' => 'here'));
我想用完整路径而不是文件名来调用 loadTemplate 方法。
我能怎么做 ?
我不想为这样的事情创建自己的加载器..
谢谢