标签:cape 调用函数 调用 als html 函数 target -- logs
以下代码:
<!--{foreach from=get_categories_tree(0) item=cat name=cat0}--> <!--{foreach from=get_brands1($GLOBALS[‘smarty‘]->_var[‘cat‘][‘id‘]) item=bchilder name=bchilder}--> {if $smarty.foreach.bchilder.iteration < 9} <a href="{$bchilder.url}" class="img-link" target="_blank" title="{$bchilder.brand_name|escape:html}"> <img src="data/brandlogo/{$bchilder.brand_logo}" width="90" height="36" /> </a> {/if} <!--{/foreach}--> <!--{/foreach}-->
俩个foreach循环中,from中嵌套了方法,方法中使用$GLOBALS[‘smarty‘]->_var[‘cat‘][‘id‘]获取变量;
一般都是从php代码中赋值,但是有时候直接在模版中进行运算处理,类似如上,也是很方便的。
标签:cape 调用函数 调用 als html 函数 target -- logs
原文地址:http://www.cnblogs.com/feiying100/p/7514251.html