smarty修改php模板教程_PHP教程
教程Tag:暂无Tag,欢迎添加,赚取U币!
缂傚倸鍊搁崐椋庣矆娴h娲晝閸屾氨鍔电紓浣插亾闁硅京顒CMS闂備浇宕甸崰鎰版偡閵夈儙娑樷攽鐎c劉鍋撻崒鐐查唶闁哄洨鍋為悗顒€鈹戦悙鍙夘棡闁搞劎鍠栧濠氭晸閿燂拷婵犵數鍋為崹璺侯潖鐟欏嫮鐝堕柛鈩冪☉閻撴﹢鏌″搴″箺闁抽攱甯¢弻銊╂偆閸屾稑顏� 缂傚倸鍊风粈渚€藝闁秴绐楅柟閭﹀墾閼板潡鏌涢妷顔煎缂佲偓婢舵劖鐓冮柕澶堝妽閻濐亪鏌e┑鎾村 闂傚倸鍊风欢锟犲磻閸曨垁鍥ㄦ綇閳哄啰顦繝銏f硾閺堫剟宕楀⿰鍫熺厸闁搞儯鍔嶉惃鎴︽⒒婢跺﹦效闁哄被鍊栧ḿ蹇涘Ω閿旂粯顥涚紓鍌欑劍閸炲骞忛敓锟� 闂傚倷绀侀幖顐﹀疮閻楀牊鍙忛柟缁㈠枛濡炰粙鏌″搴′簽闁告纰嶇换娑㈠幢濡闉嶅┑顕嗙稻閸旀鍩€椤掑喚娼愰柟顔肩埣瀹曟洟鏌嗗鍛厬闂佽法鍣﹂幏锟�,闂傚倷娴囬惃顐﹀礋椤愩垹袘闂佽姘﹂~澶嬬箾婵犲偆鍤曢柛顐f礀缁€鍐┿亜閺傚灝鎮戞い蹇曞枑缁绘盯骞嬮悙鏉戠殤闂佺ǹ顑嗛幑鍥ь潖閸濆嫧鏋庨柟顖嗗嫮浜梻浣告啞閻熴儳鎹㈠Ο渚殨濠电姵纰嶉弲鎼佹煥閻曞倹瀚�!
推荐:用动态网页技术PHP生成验证码图片的源代码
文件a.php ? //checkNum.php session_start(); function random(len) { srcstr=ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789; mt_srand(); strs=; for(i=0;ilen;i++){ strs.=srcstr[mt_rand(0,35)]; } return strtoupper(strs); } str=random(4); //随机生成的
<{foreach key=key item=MMSPAN from=TSortUrl}>
<td align="left" valign="bottom" height="25">
<{if mysort eq key}>
img src="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}>
<td align="left" valign="bottom" height="25">
<{if mysort eq key}>
img src="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 = '}>';
/*
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"}
{* include the header file here *}
{include file="header.tpl"}
数学运算符和截取:
{foo|truncate:"`fooTruncCount/barTruncFactor-1`"}
日期格式化:
{smarty.now|date_format}
{smarty.now|date_format:"%A, %B %e, %Y"}
{smarty.now|date_format:"%H:%M:%S"}
{yesterday|date_format}
{yesterday|date_format:"%A, %B %e, %Y"}
{yesterday|date_format:"%H:%M:%S"}
OUTPUT:
Feb 6, 2001
Tuesday, February 6, 2001
14:33:00
Feb 5, 2001
Monday, February 5, 2001
14:33:00
{smarty.now|date_format:"%A, %B %e, %Y"}
{smarty.now|date_format:"%H:%M:%S"}
{yesterday|date_format}
{yesterday|date_format:"%A, %B %e, %Y"}
{yesterday|date_format:"%H:%M:%S"}
OUTPUT:
Feb 6, 2001
Tuesday, February 6, 2001
14:33:00
Feb 5, 2001
Monday, February 5, 2001
14:33:00
正则使用:
{* 使用空格替换每个回车,tab,和换行符 *}
{articleTitle}
{articleTitle|regex_replace:"/[\r\t\n]/":" "}
{articleTitle}
{articleTitle|regex_replace:"/[\r\t\n]/":" "}
格式化字符串:
{textformat wrap=40 indent=4}
日期比较例子:
<td><{if smarty.now|date_format:"%Y-%m-%d" eq MMSPAN[4]|date_format:"%Y-%m-%d"}>
<img src="images/newh.gif" />
<{/if}></td>
<img src="images/newh.gif" />
<{/if}></td>
分享:PHP编程中分页显示实例代码
详细讲解PHP编程中分页显示的制作 1、前言 分页显示是一种非常常见的浏览和显示大量数据的方法,属于web编程中最常处理的事件之一。对于web编程的老手来说,编写这种代码实在是和呼吸一样自然,但是对于初学者来说,常常对这个问题摸不着头绪,因此特地撰写

相关PHP教程:
- 相关链接:
- 教程说明:
PHP教程-smarty修改php模板教程
。