TWIG模板系统基本安装简单吗?

时间:2014-07-19 17:26:33

标签: php templates twig

试图在我的php项目上使用TWIG模板系统,这是我第一次使用这个模板系统,当我去installation页面时,我发现了很多方面

还需要apache扩展才能工作吗?因为我在页面底部找到了这个

extension=twig.so #For Unix systems
extension=php_twig.dll #For Windows systems

我正在Mac上开发我的脚本,我找不到Mac的例子

如果有人使用此模板系统,您可以建议我如何基本安装此脚本吗?

非常感谢

1 个答案:

答案 0 :(得分:0)

我找到了

  1. 将文件夹“lib”复制到您的项目
  2. 这是示例代码

    require_once("/path here/lib/Twig/Autoloader.php" );
    
      Twig_Autoloader::register();
    
      $loader = new Twig_Loader_Filesystem( DIR . '/templates/');
    $twig = new Twig_Environment($loader, array(
        'cache' => DIR . '/cache',
    ));
    
    echo $twig->render('home.tpl', array('name' => 'Fabien'));