Home > php教程 > php手册 > body text

smarty内置函数capture用法分析

WBOY
Release: 2016-06-06 20:12:57
Original
774 people have browsed it

这篇文章主要介绍了smarty内置函数capture用法,实例分析了capture的三种常见用法,需要的朋友可以参考下

本文实例讲述了smarty内置函数capture用法。分享给大家供大家参考。具体分析如下:

{capture}可以捕获标记范围内的输出内容,并存到变量中而不显示。有三种用法,
代码如下:

复制代码 代码如下:

{capture}aaaaaa{/capture}
{$smarty.capture.banner}



{capture assign="foo"}bbbbbb{/capture}
{$foo}


{capture append="arr"}hello{/capture}
{capture append="arr"}world{/capture}
{foreach $arr as $value}
{$value}
{/foreach}
第一种:{capture}使用name属性;
第二种:{capture}捕获内容到变量;
第三种:{capture}捕获内容到数组变量。

希望本文所述对大家的php程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!