文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>实例学习PHP之FastTemplate模板篇

实例学习PHP之FastTemplate模板篇

时间:2008-05-13  来源:剑心通明

如果你从来没有接触过PHP,那么还是先看看这个吧,当然即使是你已经对PHP有所了解,但一本PHP4的的使用手册也还是需要的,:)。此外一本HTML语法手册当然也是不可缺少的啦。。。。。。。。。。
   在网站开发过程中你是不是经常面对改版的苦恼?几百几千个文件因为版式上的一点小变化就需要全部重新处理,是不是让你头痛无比?唉,如果能够把内容和表现形式分开就好了,这可是我们一直翘首等待的。但可惜用于处理这个问题的XML还未完全的成熟。难道除此之外就没有办法了吗?正所谓东西是死的,人却是活的,我们今天要学习的这个php库,就可以帮助我们在一定程度上处理这个问题。:))
   FastTemplate是什么?从PHP语言上来讲它是一个PHP库;从它的起源来说它源于一个同样名称的Perl软件包;从用途上来讲是一个可以让你在几秒内改变整个站点外观的实用工具。用最通俗的语言来说,它就是一个模板,一个类似DreamWaver中的模板。现在FastTemplate在你心里是一个问号?还是一个感叹号?又或是一个句号?(编辑:靠,在这骗稿费呀,我扁!)算了,不管那么多,你只要知道他是好东西就成,:)
   首先在我们使用这个库以前当然要先下载它,大家可以在下面这个网址
http://www.thewebmasters.net/php/
下载它(本站下载地址为:
http://www.phpe.net/downloads/1.shtml
)。下载之后呢把它解压缩到你的web服务器的一个目录上,下面是解压缩后的目录结构
FastTemplate-1.1.0/
FastTemplate-1.1.0/README define(
array(
main = > "main.tpl",
table = > "table.tpl",
row = > "row.tpl"
)
);
   $tpl- >assign( array( TITLE = > "FastTemplate Test") );
   for ($n=1; $n assign(
array(
NUMBER = > $Number,
BIG_NUMBER = > $BigNum
)
);
$tpl- >parse(ROWS,".row");
}
   $tpl- >parse(MAIN, array("table","main"));
   $tpl- >FastPrint();
   exit;
   ? >
    

{TITLE}  


{MAIN}



    

{ROWS}


    

{NUMBER}
{BIG_NUMBER}


   使用这个库首先要如前面所说的 include "class.FastTemplate.php3"; 然后是定义模板所在目录$tpl = new FastTemplate("./templates");注意哟!这里因为我是在windows系统运行,所以用的是"./templates",在Linux或UNIX中可能不一样,大家根据具体情况来设定。然后呢,我们对应不同的模板,定义下面这个矩阵数组。$tpl- >define( array( main = > "main.tpl", table = > "table.tpl", row = > "row.tpl" ) ); define是这个类中的一个函数。下面是它的语法:define( array( key,value pairs) ) ,define()函数映射一个名字到模板文件上,这个新的名字将是你用来代表模板的唯一名字,因为除此之外再不会有模板文件名出现。而且大家注意,这是使用类时决不能缺少的步骤,不能少的哟,如果少了那就和你不带生日礼物去你女朋友的生日Party有异曲同工之妙,嘿嘿嘿~~~~
   现在!关键的,最有个性的东西来了!assign( (key,value pair) 或 assign ( array(key value pairs) ) 这个函数将把你在模板中定义的标识符定义为你网页上真正想要的东西。比如就象是上面$tpl- >assign( array( TITLE = > "FastTemplate Test") ); 这句,将模板main.tpl里的{TITLE}替换为 FastTemplate Test 看不懂想不明的朋友多看看上面的那些代码。接着呢!接着是另外一个很有特色的东东。parse(RETURN, FileHandle(s) ) 将一个已定义模板插入的定义到另外一个模板文件中。大家仔细研究下面的代码,相信会比较容易了解。
   for ($n=1; $n assign(
array(
NUMBER = > $Number,
BIG_NUMBER = > $BigNum
)
);
$tpl- >parse(ROWS,".row");
}
   parse这个函数有三种用法
   $tpl- >parse(MAIN, "main"); // 标准
$tpl- >parse(MAIN, array ( "table", "main") ); // 简洁
$tpl- >parse(MAIN, ".row"); // 增加
   其中以第三种最有意思,它表示的是在原来已经有的基础上再加上一个新数据。呵呵,这么说大家可能无法明白,我们还是看看再多研究一下上面的源代码吧,毕竟编程这东西有很多是只可意会不可言传的!(下面附上英文的说明,不是地藏想偷懒不翻译,实在是有些东西看原味的比翻译的更加容易理解呀,
   In the regular version, the template named ``main'' is loaded if it hasn't been already, all the variables are interpolated, and the result is then stored in FastTemplate as the value MAIN. If the variable '{MAIN}' shows up in a later template, it will be interpolated to be the value of the parsed ``main'' template. This allows you to easily nest templates, which brings us to the compound style.
   The compound style is designed to make it easier to nest templates.
   The following are equivalent:
   $tpl- >parse(MAIN, "table");
   $tpl- >parse(MAIN, ".main");
   // is the same as:
   $tpl- >parse(MAIN, array("table", "main"));
   // this form saves function calls and makes your code cleaner
   It is important to note that when you are using the compound form, each template after the first, must contain the variable that you are parsing the results into. In the above example, 'main' must contain the variable '{MAIN}', as that is where the parsed results of 'table' is stored. If 'main' does not contain the variable '{MAIN}' then the parsed results of 'table' will be lost. The append style allows you to append the parsed results to the target variable. Placing a leading dot . before a defined file handle tells FastTemplate to append the parsed results of this template to the returned results. This is most useful when building tables that have an dynamic number of rows - such as data from a database query. )
   最后在完成$tpl- >FastPrint();
   在经过上面的这些步骤后,大家对使用FastTemplate库的过程是否清楚明白呢?地藏试试把上面的过程总结一下,看看对各位朋友是否有帮助:
   首先:将库用include加进来
   其次:定义一个类变量,在上例中是$tpl
   再次:定义各种最小元素,比如上面的$tpl = new FastTemplate("./templates");
   然后:利用parse函数将各种最小元素进行组合起来
   最后:用FastPrint()进行输出


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载