我为 smarty 模板创建了一个文件夹结构
f .f1 ..template1.tpl ..test.tpl template1.tpl
the template_dir path is pointed to folder 'f/'
in test.tpl is the code below
{include file="template1.tpl"}
{include file="../template1.tpl"}
此代码不起作用。知道我可能哪里出错了吗?
我读到 $smarty-> use_sub_dirs = true,它确实在我的 template_c 文件夹中创建了子文件夹,但我仍然无法按照上述代码包含模板。
提前致谢。
最佳答案
只需将 f1 添加到您的 URL
{include file="f1/template1.tpl"}
关于smarty - 使用相对路径从子文件夹中包含 Smarty 模板,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7624626/