开发自己的模板引擎

2018-06-22 04:55:42来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

自定义模板引擎类

MyTpl.class.php

 1 <?php
 2 class MyTpl
 3 {
 4     private $tpl_vars = array();
 5     //分配
 6     public function assign($key,$value){
 7         $this->tpl_vars[$key] = $value;
 8     }
 9     public function display($tpl){
10         $contents = file_get_contents($tpl);
11         foreach ($this->tpl_vars as $k => $v){
12         //替换 将{$name} 替换成真实的数据
13         $contents = str_replace('{$'."$k".'}',"$v", $contents);
14         $compile = './templates_c/'.md5('show.html') . '.php';
15         file_put_contents($compile, $contents);
16         require $compile;
17         }
18     }
19 }
20 $tpl = new MyTpl;
21 $tpl-> assign('name','张四');
22 $tpl-> display('./template/show.html');

 

自定义视图

template/show.html

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4 <meta charset="UTF-8">
 5 <title>Insert title here</title>
 6 </head>
 7 <body>
 8     {$name}
 9 </body>
10 </html>

 

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:沈逸老师PHP魔鬼特训笔记(4)

下一篇:PHP常用函数总结