首页 > PHP教程 > PHP综合文章 > 正文:smarty技术学习,修改php模板的一点体会

smarty技术学习,修改php模板的一点体会

web学习吧 2007-09-19 来源: 收藏本文
共2页: 上一页 1 [2] 下一页

    smarty,最得名,用之,配置语法都是菜鸟级别的,没的说,先列一点我使用的:
  
<{foreach  key=key   item=MMSPAN from=$TSortUrl}>

 <td  align="left" valign="bottom" height="25">
<{if $mysort eq $key}>
img src="http:///Htmldata/2007-09-17/images/sort_<{$key}>_1.gif"  height="25" border="0" />

<{else}>

<a href="<{$MMSPAN}>"><img src="images/sort_<{$key}>.gif"  height="25"  border="0" /></a>

<{/if}></td>

<{/foreach}>

  如果在模板中需要有动态替换的,诸如用户登陆信息,最好的是调用js

  主要的参数配置是:

include_once(IncludeFile."/libs/Smarty.class.PHP");
$tpl = new Smarty();
$tpl->caching= false;   //True开启缓存
//$tpl->compile_check=true;//确定以后不再编译模板,修改为false
$tpl->template_dir = IncludeFile . "/templates/".Isite_tpl."/";
$tpl->compile_dir = IncludeFile . "/templates_c/";
$tpl->config_dir = IncludeFile . "/configs/";
$tpl->cache_dir = IncludeFile . "/cache/";
$tpl->left_delimiter = '<{';
$tpl->right_delimiter = '}>';
/*

 
  其中,常用的2个方法template_exists($f),用于检测$f模板是否存在。fetch()用于返回已经被assign的模板的输出文件,在生成静态页面的时候很是有用。

  看看smarty自身的chm文件说明,除了基本的几个语法,就看你的灵活使用了:

   传参:
   
<{include file="SiteAllTop.html"  mysort ="0" }>


   获取系统参数:
  
<{if $MMSPAN[0] eq $smarty.get.s}>selected<{/if}>

   清除一切html格式:

<{$OReDetail[6]strip_tags}>

   注释:
{* Smarty *}

{* include the header file here *}
{include file="header.tpl"}

 

  数学运算符和截取:

{$footruncate:"`$fooTruncCount/$barTruncFactor-1`"}


  日期格式化:
{$smarty.nowdate_format}
{$smarty.nowdate_format:"%A, %B %e, %Y"}
{$smarty.nowdate_format:"%H:%M:%S"}
{$yesterdaydate_format}
{$yesterdaydate_format:"%A, %B %e, %Y"}
{$yesterdaydate_format:"%H:%M:%S"}

OUTPUT:

Feb 6, 2001

共2页: 上一页 1 [2] 下一页
网站地图 - 最新教程 - RSS订阅 - 版权所有 - 广告服务 - 友情连接 - 联系我们