smarty保留变量

1、$smarty.now变量
    {* use the date_format modifier to show current date and time *}
     {$smarty.now|date_format:"%Y-%m-%d %H:%M:%S"}
2、
{* display value of page from URL (GET) http://www.domain.com/index.php?page=foo *}
{$smarty.get.page}    //$smarty.get变量

{* display the variable "page" from a form (POST) *}
{$smarty.post.page}    //$smarty.post变量

{* display the value of the cookie "username" *}
{$smarty.cookies.username}

{* display the server variable "SERVER_NAME" *}
{$smarty.server.SERVER_NAME}

{* display the system environment variable "PATH" *}
{$smarty.env.PATH}

{* display the php session variable "id" *}
{$smarty.session.id}

{* display the variable "username" from merged get/post/cookies/server/env *}
{$smarty.request.username}


3、total 用于显示循环执行总的次数. 可以在循环中或执行结束后调用此属性.

     index 用于显示当前循环的索引,从0开始(如果指定了start属性,那么由该值开始),每次加1(如果指定了step属性,那么由该值决定).    

例如:section 的 total 、index属性演示

{section name=customer loop=$custid step=2}

{$smarty.section.customer.index}

id: {$custid[customer]}<br>

{/section}

There were {$smarty.section.customer.total}

customers shown above.


输出:

          0 id: 1000<br>

          2 id: 1001<br>4 id: 1002<br>

         There were 3 customers shown above.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值