模板引擎支持标签的多层嵌套功能,可以对标签库的标签指定可以嵌套。

    系统内置的标签中,volist、switch、if、elseif、else、foreach、compare(包括所有的比较标签)、(not)present、(not)empty、(not)defined等标签都可以嵌套使用。例如:

    1. <volist name="list" id="vo">
    2. <volist name="vo['sub']" id="sub">
    3. {$sub.name}
    4. </volist>
    5. </volist>

    上面的标签可以用于输出双重循环。

    原文: https://www.thinkcmf.com/docs/cmf/标签嵌套.html