我正在使用 fetch() 方法来存储模板并将其显示在另一个模板中,如下所示:
$this->mySmarty->assign('template',$this->fetch('template.tpl'));
$this->display('mypage.html');
其中 mySmarty 被实例化为 smarty 类。我在 mypage.html 中调用 {$template}。
页面“mypage.html”显示正确,但 {$template} 变量输出 0。怎么可能?(知道我正确设置了权限)