如何安装Twig模板引擎?

时间:2010-08-08 23:46:31

标签: php twig mamp template-engine

我正在运行Mamp作为我的本地服务器。我在/Applications/MAMP/svn/twig/twig/lib安装了Twig。我在php.ini文件中包含了这个路径:

include_path = ".:/Applications/MAMP/bin/php5.3/lib/php:/Applications/MAMP/svn/zendframework/trunk/library:/Applications/MAMP/svn/twig/twig/lib";

为了让我完成安装和访问Twig,需要进入我的htdocs文件夹?

2 个答案:

答案 0 :(得分:13)

您不需要安装任何东西,只需在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) developperstemplate designers的文档。

答案 1 :(得分:0)

include __DIR__ . "/vendor/twig/twig/lib/Twig/Autoloader.php";  

//register autoloader  

Twig_Autoloader::register();  

//loader for template files  

$loader = new Twig_Loader_Filesystem('templates');  

//twig instance  

$twig = new Twig_Environment($loader, array('cache' => 'cache'));  

//load template file  

$template = $twig->loadTemplate('index.html');  

//render a template  

echo $template->render(array('title' => 'Welcome to Twig template'));  

查找有关此Tutorial

的更多信息