一个PHP模板,主要想体现一下思路
思路:
欲在速度和易用(主要指的是美工设计的方便性)之间取得一个平衡点.于是采用了由html文件生成php文件的办法(编译?)
也想在分离显示逻辑和分离html代码之间平衡一下
例如一个论坛首页(index.php):
代码: |
<?php require('./template.php'); //由html生成的php文件的前缀,区别使用多种风格. $tpl_prefix = 'default'; //模板文件名 $tpl_index = 'index'; $tpl = new Template($tpl_prefix); $cats = array( if ($cats) \nif(\$forum['forum_cat_id'] == \$cat['forum_id']) {?>"); |
对应的html模板文件(index.html):
代码: |
{block_cat} <table width="100%" border="0" cellspacing="1" cellpadding="1" bgcolor="#000000" align="center"> <tr align="{=TR_ALING}" bgcolor="#FFFFFF"> <td colspan="6"><span class="title"><b>{=$cat['forum_name']}</b></span></td> </tr> {block_forum} <tr bgcolor="#FFFFFF"> <td valign="top">{=$forum['forum_name']}</td> </tr> {/block_forum} </table> <br> {/block_cat} |
经过处理,里面的{block_forum}{block_cat}标签被替换成PHP循环语句,用于显示数组种所有元素.
生成的PHP模板文件(default_index.php):
代码: |
<?foreach($cats as $cat) {?> <table width="100%" border="0" cellspacing="1" cellpadding="1" bgcolor="#000000" align="center"> <tr align="<?=TR_ALING?>" bgcolor="#FFFFFF"> <td colspan="6"><span class="title"><b><?=$cat['forum_name']?></b></span></td> </tr> <?foreach($forums as $forum) { if($forum['forum_cat_id'] == $cat['forum_id']) {?> <tr bgcolor="#FFFFFF"> <td valign="top"><?=$forum['forum_name']?></td> </tr> <?} }?> </table> <br> <?}?> |
default_index.php被包含在index.php,这样就可以正常显示了.
这样,HTML模板文件可以用dw来进行修改美化,美工人员应该会方便一些.
template.php
代码: |
<?php /********************************************************************************* * 模板类(Template) * 最后修改时间:2004.4.07 本论坛使用 * * * **********************************************************************************/ class Template { //$this->$template,储存模板数据. //模板路径. //模板前缀(风格名称). //cache路径(编译后的路径). //css文件路径. //header文件路径. //footer文件路径 /** /** /** /** /** $cache_file = $this->cache_path . $tpl_index . '.php'; //变量显示. //界面语言替换. $fp = fopen($cache_file, 'w'); /** |