1

我正在运行 Mamp 作为我的本地服务器。我已经在/Applications/MAMP/svn/twig/twig/lib. 我已经在我的 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 文件夹中的哪些内容?

4

2 回答 2

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) 开发人员和模板设计人员的文档。

于 2010-08-09T00:13:22.063 回答
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'));  

查找有关本教程的更多信息

于 2014-10-16T20:12:56.360 回答