入门客AI创业平台(我带你入门,你带我飞行)
博文笔记

smarty中自定义函数

创建时间:2011-11-16 投稿人: 浏览次数:669
 自定义函数:即可以自行修改的函数,它需要保存在plugins目录下

              语法格式类似于html标记的写法

              <{……}>

一、了解smarty自定义函数

  例如:

1)  smarty自定义函数assign

作用:用于在模板被执行时为模板变量赋值.

函数名称:assign

参数:var:   声明变量名称  字符串

      Value: 给该变量赋值  字符串

<{assign  var=”title”  value=”this is title”}>

 

    $tpl->assign(“title”,”this is title”);

该 属性无顺序要求

<{config_load  file=”*.conf”  section=”one”}>

2)  smarty方法assign

 二、实现自定义函数

1)例如:

a.html 

<{title  num=”10”  content=”aaaa”  size=”10”  color=”red”  }>

b.php

第一步:自定义函数

function  fun1(){}

第二步:注册自定义函数

$tpl->register_function(“模板文件中的函数名”,”php中的函数名”)

 

Plugins/function_自定义函数名_*

 

2)  注册块

   $tpl->register_block(“模板文件中的块名”,”php中的函数名”)

<hr />

<br />

<a> </a>块

a.html

          <{h   num=10  content=”aaa”}>

          <{/h}>

         

3)  在plugins目录下新建文件

新建函数文件 world

  例如:function.assign_debug_info.php

  步骤

第一步:plugins下新建文件function.world.php

第二步:打开文件

    Function smarty_function_world($args,&$smarty){..}

           新建块文件hello

block.hello.php

function  smarty_block_hello(){}

第一步:plugins下新建块文件block.hello.php

第二步:打开文件

    Function smarty_block_hello($args,$content,&$smarty){..}

声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
  • 上一篇:没有了
  • 下一篇:没有了
未上传头像