本文实例讲述了smarty内置函数capture用法。分享给大家供大家参考。具体分析如下:
{capture}可以捕获标记范围内的输出内容,并存到变量中而不显示。有三种用法,
代码如下:
复制代码 代码如下:
{capture name="banner"}aaaaaa{/capture}
{$smarty.capture.banner}
<hr />
{capture assign="foo"}bbbbbb{/capture}
{$foo}
<hr />
{capture append="arr"}hello{/capture}
{capture append="arr"}world{/capture}
{foreach $arr as $value}
{$value}
{/foreach}
{$smarty.capture.banner}
<hr />
{capture assign="foo"}bbbbbb{/capture}
{$foo}
<hr />
{capture append="arr"}hello{/capture}
{capture append="arr"}world{/capture}
{foreach $arr as $value}
{$value}
{/foreach}
第一种:{capture}使用name属性;
第二种:{capture}捕获内容到变量;
第三种:{capture}捕获内容到数组变量。
希望本文所述对大家的php程序设计有所帮助。
最后
以上就是可耐麦片最近收集整理的关于smarty内置函数capture用法分析的全部内容,更多相关smarty内置函数capture用法分析内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复