>  기사  >  백엔드 개발  >  smarty技术学习,修改php模板的一点体会_PHP教程

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

WBOY
WBOY원래의
2016-07-13 17:29:38889검색

smarty,最得名,用之,配置语法都是菜鸟级别的,没的说,先列一点我使用的:
  


 

img src="images/sort__1.gif"  height="25" border="0" />



">smarty技术学习,修改php模板的一点体会_PHP教程.gif"   style="max-width:90%"  border="0" />





  如果在模板中需要有动态替换的,诸如用户登陆信息,最好的是调用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文件说明,除了基本的几个语法,就看你的灵活使用了:

   传参:
   



   获取系统参数:
  
selected


   清除一切html格式:


   注释:
{* Smarty *}

{* 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


  正则使用:
{* 使用空格替换每个回车,tab,和换行符 *}
{$articleTitle}
{$articleTitle|regex_replace:"/[ ]/":" "}


  格式化字符串:

{textformat wrap=40 indent=4}


  日期比较例子:

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

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/531662.htmlTechArticlesmarty,最得名,用之,配置语法都是菜鸟级别的,没的说,先列一点我使用的: {foreachkey=keyitem=MMSPANfrom=$TSortUrl} tdalign="left"valign="bottom"hei...
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.