Smarty:capture函数

2018-10-14 11:20 更新

{capture}

{capture}可以捕获标记范围内的输出内容,存到变量中而不显示。 任何在{capture name='foo'} 和 {/capture} 之间的内容都会被捕获到变量,变量名可以通过name属性来指定。

捕获的内容可以通过$smarty.capture.foo变量来使用,这里foo是设置的name属性。 如果没有提供name属性,默认是default,也就是 $smarty.capture.default.

{capture}可以被嵌套使用。

属性:

参数名称类型必选参数默认值说明
namestringYesn/a捕获区域的名称
assignstringNon/a捕获内容后赋值的变量名
appendstringNon/a将捕获的内容增加到数组中

可选标记:

名称说明
nocache关闭捕获区域的缓存

警告

当捕获{insert}输出的时候请小心。 如果开启了$caching并且 你希望通过{insert} 在缓存的页面上显示动态内容,那么你无法捕获这些内容。

Example 7.21. {capture}使用name属性

{* we don't want to print a div tag unless content is displayed *}
{capture name="banner"}
{capture "banner"} {* short-hand *}
  {include file="get_banner.tpl"}
{/capture}

{if $smarty.capture.banner ne ""}
<div id="banner">{$smarty.capture.banner}</div>
{/if}


Example 7.22. {capture} 捕获内容到变量

下面是capture函数的演示

{capture name=some_content assign=popText}
{capture some_content assign=popText} {* short-hand *}
The server is {$my_server_name|upper} at {$my_server_addr}<br>
Your ip is {$my_ip}.
{/capture}
<a href="#">{$popText}</a>


Example 7.23. {capture} 捕获内容到数组变量

下面例子演示了如何多次捕获内容,形成数组。

{capture append="foo"}hello{/capture}I say just {capture append="foo"}world{/capture}
{foreach $foo as $text}{$text} {/foreach}

输出:

I say just hello world

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号