smarty内置函数capture用法分析,smartycapture_PHP教程
程序员文章站
2024-02-14 22:24:34
...
smarty内置函数capture用法分析,smartycapture
本文实例讲述了smarty内置函数capture用法。分享给大家供大家参考。具体分析如下:
{capture}可以捕获标记范围内的输出内容,并存到变量中而不显示。有三种用法,
代码如下:
复制代码 代码如下:
{capture name="banner"}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}
{$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程序设计有所帮助。
推荐阅读
-
smarty内置函数capture用法分析,smartycapture_PHP教程
-
smarty内置函数capture用法分析
-
Python基础教程之内置函数locals()和globals()用法分析
-
smarty内部日期函数html_select_date()用法实例分析,select函数用法_PHP教程
-
smarty内置函数capture用法分析
-
smarty内置函数section的用法,smarty内置section_PHP教程
-
smarty内部日期函数html_select_date()用法实例分析,select函数用法_PHP教程
-
smarty内置函数capture用法分析_PHP
-
smarty内置函数{loteral}、{ldelim}和{rdelim}用法实例,smartyloteral_PHP教程
-
smarty内置函数capture用法分析_PHP