我在用纯PHP编写的项目中安装了TWIG,我想创建一个数组来加载许多*.twig
页面或使用$_GET['page']
。
有可能吗?
这是我的代码:
<?php
include('twig.php');
$template = $twig->loadTemplate('testmacro.twig');
echo $template->render(array());
?>
此代码只加载一个*.twig
页面
提前致谢
答案 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());
?>