代码: |
require('./template.php'); //由html生成的php文件的前缀,区别使用多种风格. $tpl_prefix = 'default'; //模板文件名 $tpl_index = 'index'; $tpl = new Template($tpl_prefix); $cats = array( array('forum_id'=>'1','forum_cat_id'=>'0','forum_name'=>'PHP学习'), array('forum_id'=>'2','forum_cat_id'=>'0','forum_name'=>'MYSQL学习') ); $forums = array( array('forum_id'=>'3','forum_cat_id'=>'1','forum_name'=>'PHP高级教程'), array('forum_id'=>'4','forum_cat_id'=>'1','forum_name'=>'PHP初级教程'), array('forum_id'=>'5','forum_cat_id'=>'2','forum_name'=>'MYSQL相关资料') ); if ($cats) { if ($tpl->chk_cache($tpl_index))//检查判断是否需要重新生产PHP模板文件. { $tpl->load_tpl($tpl_index);//加载html模板文件. //替换PHP语句 $tpl->assign_block("{block_cat}",""); $tpl->assign_block("{/block_cat}","}?>"); $tpl->assign_block("{block_forum}","\nif(\$forum['forum_cat_id'] == \$cat['forum_id']) {?>"); $tpl->assign_block("{/block_forum}","}\n}?>"); //生产PHP模板文件. $tpl->write_cache($tpl_index); } } //包含PHP模板文件. include($tpl->parse_tpl($tpl_index)); ?> |
代码: | |||||||
{block_cat}
{/block_cat} |
代码: | |||||||
}?> |
Code: |
/*************************************************** * ****************************** * * の ‐ ‐ * * ***** ******************************************* ******* ******************************/ class Template { //$this->$template、 var $ を格納します。 template = '' ; var $tpl_path = ''; var $tpl_prefix = ''; var $キャッシュパス = ''; var $css_path = ''; var $header_path = ''; /* * * テンプレートのパスを初期化します。*/ function Template($root = 'default') { //テンプレートのプレフィックス (スタイル名) $this->tpl_prefix = $root; // テンプレート ファイルのパス。 $>キャッシュ_パス . '.php' elseif(filemtime($tpl_file ) > filemtime($cache_file)) $this-> を返します。 php'; } /** * chk_cache、「コンパイル済み」テンプレートを更新する必要があるかどうかを確認します。 判断基準: 最終変更時刻、「コンパイル済み」ファイルが存在するかどうか。*/ 関数load_tpl($tpl_index) { $tpl_file = $this->tpl_path . $fp = fopen($tpl_file) , 'r'); $this->template = fread($fp, filesize($tpl_file)); /** * テンプレートファイルを出力します。* / 関数 write_cache($tpl_index) ) $cache_file = $this->cache_path . $tpl_index . '.php'; $this->template = preg_replace("/({= )(.+?) })/is "、"<?= \ 2?> "、$ this-> template); //インターフェイス言語置換。 $lang['main']['\1']", $this->template); $fp = fopen($cache_file, 'w '); flock($fp, 3);使用する 使用する 使用するusing using through out through through ' ‐ ‐ ‐ ‐‐ および _ to be fwrite($fp, $this->template) ,$replace) { } $this->template = str_replace ($search,$replace,$this->テンプレート); ?> |
上記は主にアイデアを反映するために PHP テンプレートを紹介しており、内容の側面も含めて、PHP チュートリアルに興味のある友人に役立つことを願っています。