内建函数

 

内建函数

  按照smarty的要求去用

 

config_load (加载配置文件)

file=”配置文件名称”

session=“区域名称”

 

 

$tpl->configs=”./configs”//基准路径

./configs/dir_l/a.conf

<{config_load file=”dir_1/a.conf” session=”one”}>

 

 

include

标签用于在当前模板中包含其它模板.

当前模板中的变量在被包含的模板中可用.

 

<{include }{include file="header.tpl"}>

 

 

capture  函数的作用是捕获模板输出的数据并将其存储到一个变量里,而不是把它们输出到页面.
任何在 {capture name="foo"}和{/capture}之间的数据将被存储到变量$foo中,该变量由name属性指定.
在模板中通过 $smarty.capture.foo 访问该变量.
如果没有指定 name 属性,函数默认将使用 "default" 作为参数.
{capture}必须成对出现,即以{/capture}作为结尾,该函数不能嵌套使用.

 

<{capture name=”自定义区域名”}>

Aaaaaaaaa

<{$name}>

<{include file=”head.tpl”}>

</capture>

 

foreach,foreachelse (循环部分)

 功能和语法与php当中类似,===foreach

Foreach($row as $value){

 

}

效率差;

For($i=0;$i<5;$i++){ }

变量

$smarty.foreach

if,elseif,else

if 必须于 /if 成对出现. 可以使用 else 和 elseif 子句. 可以使用以下条件修饰词:eq、ne、neq、gt、lt、lte、le、gte、ge、is even、is odd、is not even、is not odd、not、mod、div by、even by、odd by、==、!=、>、<、<=、>=. 使用这些修饰词时必须和变量或常量用空格格开.

ldelim,rdelim : ldelim 和 rdelim 用于输出分隔符,也就是大括号 "{" 和 "}". 模板引擎总是尝试解释大括号内的内容,因此如果需要输出大括号,请使用此方法.

{* this will print literal delimiters out of the template *}
 
{ldelim}funcname{rdelim} is how functions look in Smarty!
 

section,sectionelse

模板的 section 用于遍历数组中的数据. section 标签必须成对出现. 必须设置 nameloop 属性. 名称可以是包含字母、数字和下划线的任意组合. 可以嵌套但必须保证嵌套的 name 唯一. 变量 loop (通常是数组)决定循环执行的次数. 当需要在 section 循环内输出变量时,必须在变量后加上中括号包含着的 name 变量. sectionelse 当 loop 变量无值时被执行.

{* this example will print out all the values of the $custid array *}
{section name=customer loop=$custid}
        id: {$custid[customer]}<br>
{/section}

include_php

inluce_php 函数用于在模板中包含 php 脚本. 如果设置了安全模式,被包含的脚本必须位于 $trusted_dir 路径下. include_php 函数必须设置 file 属性,该属性指明被包含 php 文件的路径,可以是 $trusted_dir 的相对路径,也可以是绝对路径、

{* absolute path, or relative to $trusted_dir *}

{* 绝对路径或 $trusted_dir 的相对路径 *}

{include_php file="/path/to/load_nav.php"}

 

{foreach item="curr_section" from=$sections}

        <a href="{$curr_section.url}">{$curr_section.name}</a><br>

{/foreach}

 

 

 

 

 

 

 

 

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值