你不需要安装任何东西,你可以在 PHP 中使用它。这是一个加载和渲染模板的简单脚本:
require_once( "Twig/Autoloader.php" );
Twig_Autoloader::register();
// Load template files from the ./tpl/ folder and use ./tpl/cache/ for caching
$twig = new Twig_Environment( new Twig_Loader_Filesystem("./tpl"),
array( "cache" => "./tpl/cache" ) );
// Load and render 'template.tpl'
$tpl = $twig->loadTemplate( "template.tpl" );
echo $tpl->render( array("msg"=>"Hello, World!") );
您的 template.tpl 可能如下所示:
<html>
<!-- ... -->
<body>
<h1>{{ msg|e }}</h1>
</body>
</html>
此示例将转义并回显“Hello, World”。
有关更多信息,请阅读(PHP) 开发人员和模板设计人员的文档。