PHP100 2019-03-27
代码如下:
function template($tpl = 'index',$dir = 'hello') { if(!file_exists($pd = TPL_PATH.$dir.'/'))@mkdir($pd,0777) or die("$pd目录创建失败");//如cache/tpl/hello/ if(!file_exists($td = TPL.$dir.'/'))@mkdir($td,0777) or die("$td目录创建失败");//如data/tpl/hello/ $t2p = $pd.$tpl.'.php';//模板文件正则转换后形成的php文件,如cache/tpl/hello/index.php $t2h = $td.$tpl.'.html';//html模板文件,如data/tpl/hello/index.html
代码如下:
if(!file_exists($t2p) || @filemtime($t2p) < @filemtime($t2h) )//模板文件改变后,正则的php文件相应更新 { template_go($t2p,$t2h);//模板转换开始 } return $t2p;//返回正则后的php文件,可以这样调用:如include template('header','hello'); }
代码如下:
function template_go($t2p,$t2h) { $str = @file_get_contents($t2h);//读出 if($str === false) exit("模板文件缺失,请检查!"); $str = template_do($str);//正则替换 @chmod($t2p,0777); return $str = file_put_contents($t2p, $str);//写入 }
代码如下:
function template_do($str) { $str = preg_replace('/([\n\r+])\t+/s', '\\1', $str);//去掉TAB制表符。修正符/s是不忽略换行 $str = preg_replace('/\{\$(.*)\}/Us', '<?php echo $\\1; ?>', $str);/*{$xx}换成<?php echo $xx;?> 注意,必须加上修正符/U,只能匹配一次。也可懒惰匹配*/ $str = preg_replace('/\{php (.+)\}/', '<?php \\1 ?>', $str);/*{php xxxx}换成<?php xxxx ?> 注意,不能加上修正符/s,要考虑多次进行该正则而换行的问题*/ $str = preg_replace('/\{template(.*)\}/Us', '<?php include template\\1; ?>', $str); /*{template(xx,yy)}换成<?php include template(xx,yy); ?> */ $str = preg_replace('/\{include (.*)\}/Us', '<?php include "\\1"; ?>', $str);/*{include xx.php}换成<?php include xx.php ?> */ $str = "<?php defined('IN_PH') or die('Access Denied');?>".$str; //$str = preg_replace('/\s+/', ' ', $str);//查看网页源代码看看 return $str; }