如下代碼:php
<!--{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']獲取變量;html
通常都是從php代碼中賦值,可是有時候直接在模版中進行運算處理,相似如上,也是很方便的。url