在一个PHP文件中加载多个模板TWIG

时间:2016-07-26 15:53:44

标签: php twig

我在用纯PHP编写的项目中安装了TWIG,我想创建一个数组来加载许多*.twig页面或使用$_GET['page']

有可能吗?

这是我的代码:

<?php
    include('twig.php');
    $template = $twig->loadTemplate('testmacro.twig');
    echo $template->render(array()); 
?>

此代码只加载一个*.twig页面

提前致谢

1 个答案:

答案 0 :(得分:1)

我认为您只需加载2个模板并调用echo函数两次:

<?php
    include('twig.php');
    $template = $twig->loadTemplate('testmacro.twig');
    echo $template->render(array()); 
    $template2 = $twig->loadTemplate('testmacro2.twig');
    echo $template2->render(array()); 
?>