当前位置:Gxlcms > PHP教程 > PHP模板解析类

PHP模板解析类

时间:2021-07-01 10:21:17 帮助过:22人阅读

PHP模板解析类
  1. class template {
  2. private $vars = array();
  3. private $conf = '';
  4. private $tpl_name = 'index';//如果模板不存在 会查找当前 controller默认index模板
  5. private $tpl_suffix = '.html';//如果CONFIG没配置默认后缀 则显示
  6. private $tpl_compile_suffix= '.tpl.php';//编译模板路径
  7. private $template_tag_left = '<{';//模板左标签
  8. private $template_tag_right = '}>';//模板右标签
  9. private $template_c = '';//编译目录
  10. private $template_path = '';//模板完整路径
  11. private $template_name = '';//模板名称 index.html
  12. //定义每个模板的标签的元素
  13. private $tag_foreach = array('from', 'item', 'key');
  14. private $tag_include = array('file');//目前只支持读取模板默认路径
  15. public function __construct($conf) {
  16. $this->conf = &$conf;
  17. $this->template_c = $this->conf['template_config']['template_c'];//编译目录
  18. $this->_tpl_suffix = $this->tpl_suffix();
  19. }
  20. private function str_replace($search, $replace, $content) {
  21. if(empty($search) || empty($replace) || empty($content)) return false;
  22. return str_replace($search, $replace, $content);
  23. }
  24. /**
  25. * preg_match_all
  26. * @param $pattern 正则
  27. * @param $content 内容
  28. * @return array
  29. */
  30. private function preg_match_all($pattern, $content) {
  31. if(empty($pattern) || empty($content)) core::show_error('查找模板标签失败!');
  32. preg_match_all("/".$this->template_tag_left.$pattern.$this->template_tag_right."/is", $content, $match);
  33. return $match;
  34. }
  35. /**
  36. * 模板文件后缀
  37. */
  38. public function tpl_suffix() {
  39. $tpl_suffix = empty($this->conf['template_config']['template_suffix']) ?
  40. $this->tpl_suffix :
  41. $this->conf['template_config']['template_suffix'] ;
  42. return $tpl_suffix;
  43. }
  44. /**
  45. * 此处不解释了
  46. * @return
  47. */
  48. public function assign($key, $value) {
  49. $this->vars[$key] = $value;
  50. }
  51. /**
  52. * 渲染页面
  53. * @param
  54. * 使用方法 1
  55. * $this->view->display('error', 'comm/');
  56. * 默认是指向TPL模版的跟目录,所以comm/就是 tpl/comm/error.html
  57. * 使用方法 2
  58. * $this->view->display('errorfile');
  59. * 默认指向控制器固定的文件夹
  60. * 例如你的域名是 http://heartphp/admin/index, 那么正确路径就是tpl/admin/index/errorfile.html
  61. * @return
  62. */
  63. public function display($filename = '', $view_path = '') {
  64. $tpl_path_arr = $this->get_tpl($filename, $view_path);//获取TPL完整路径 并且向指针传送路径以及名称
  65. if(!$tpl_path_arr) core::show_error($filename.$this->_tpl_suffix.'模板不存在');
  66. //编译开始
  67. $this->view_path_param = $view_path;//用户传递过来的模版跟目录
  68. $this->compile();
  69. }
  70. /**
  71. * 编译控制器
  72. * @param
  73. * @return
  74. */
  75. private function compile() {
  76. $filepath = $this->template_path.$this->template_name;
  77. $compile_dirpath = $this->check_temp_compile();
  78. $vars_template_c_name = str_replace($this->_tpl_suffix, '', $this->template_name);
  79. $include_file = $this->template_replace($this->read_file($filepath), $compile_dirpath, $vars_template_c_name);//解析
  80. if($include_file) {
  81. $this->read_config() && $config = $this->read_config();
  82. extract($this->vars, EXTR_SKIP);
  83. [url=home.php?mod=space&uid=48608]@include[/url] $include_file;
  84. }
  85. }
  86. /**
  87. * 读取当前项目配置文件
  88. */
  89. protected function read_config() {
  90. if(file_exists(SYSTEM_PATH.'conf/config.php')) {
  91. @include SYSTEM_PATH.'conf/config.php';
  92. return $config;
  93. }
  94. return false;
  95. }
  96. /**
  97. * 解析模板语法
  98. * @param $str 内容
  99. * @param $compile_dirpath 模版编译目录
  100. * @param $vars_template_c_name 模版编译文件名
  101. * @return 编译过的PHP模板文件名
  102. */
  103. private function template_replace($str, $compile_dirpath, $vars_template_c_name) {
  104. if(empty($str)) core::show_error('模板内容为空!');
  105. //处理编译头部
  106. $compile_path = $compile_dirpath.$vars_template_c_name.$this->tpl_compile_suffix;//编译文件
  107. if(is_file($compile_path)) {
  108. //$header_content = $this->get_compile_header($compile_path);
  109. //$compile_date = $this->get_compile_header_comment($header_content);
  110. $tpl_filemtime = filemtime($this->template_path.$this->template_name);
  111. $compile_filemtime = filemtime($compile_path);
  112. //echo $tpl_filemtime.'=='.date('Y-m-d H:i:s', $tpl_filemtime).'
    ';
  113. //echo $compile_filemtime.'=='.date('Y-m-d H:i:s', $compile_filemtime);
  114. //如果文件过期编译 当模板标签有include并且有修改时 也重新编译
  115. //<{include file="public/left.html"}> 当修改include里的文件,非DEBUG模式时 如果不更改主文件 目前是不重新编译include里的文件,我在考虑是否也要更改,没想好,暂时这样,所以在开发阶段一定要开启DEBUG=1模式 要不然修改include文件无效 。 有点罗嗦,不知道表述清楚没
  116. if($tpl_filemtime > $compile_filemtime || DEBUG) {
  117. $ret_file = $this->compile_file($vars_template_c_name, $str, $compile_dirpath);
  118. } else {
  119. $ret_file = $compile_path;
  120. }
  121. } else {//编译文件不存在 创建他
  122. $ret_file = $this->compile_file($vars_template_c_name, $str, $compile_dirpath);
  123. }
  124. return $ret_file;
  125. }
  126. /**
  127. * 模板文件主体
  128. * @param string $str 内容
  129. * @return html
  130. */
  131. private function body_content($str) {
  132. //解析
  133. $str = $this->parse($str);
  134. $header_comment = "Create On##".time()."|Compiled from##".$this->template_path.$this->template_name;
  135. $content = "\r\n$str";
  136. return $content;
  137. }
  138. /**
  139. * 开始解析相关模板标签
  140. * @param $content 模板内容
  141. */
  142. private function parse($content) {
  143. //foreach
  144. $content = $this->parse_foreach($content);
  145. //include
  146. $content = $this->parse_include($content);
  147. //if
  148. $content = $this->parse_if($content);
  149. //elseif
  150. $content = $this->parse_elseif($content);
  151. //模板标签公用部分
  152. $content = $this->parse_comm($content);
  153. //转为php代码
  154. $content = $this->parse_php($content);
  155. return $content;
  156. }
  157. /**
  158. * echo 如果默认直接<{$config['domain']}> 转成
  159. */
  160. private function parse_echo($content) {
  161. }
  162. /**
  163. * 转换为PHP
  164. * @param $content html 模板内容
  165. * @return html 替换好的HTML
  166. */
  167. private function parse_php($content){
  168. if(empty($content)) return false;
  169. $content = preg_replace("/".$this->template_tag_left."(.+?)".$this->template_tag_right."/is", "", $content);
  170. return $content;
  171. }
  172. /**
  173. * if判断语句
  174. * <{if empty($zhang)}>
  175. * zhang
  176. * <{elseif empty($liang)}>
  177. * liang
  178. * <{else}>
  179. * zhangliang
  180. * <{/if}>
  181. */
  182. private function parse_if($content) {
  183. if(empty($content)) return false;
  184. //preg_match_all("/".$this->template_tag_left."if\s+(.*?)".$this->template_tag_right."/is", $content, $match);
  185. $match = $this->preg_match_all("if\s+(.*?)", $content);
  186. if(!isset($match[1]) || !is_array($match[1])) return $content;
  187. foreach($match[1] as $k => $v) {
  188. //$s = preg_split("/\s+/is", $v);
  189. //$s = array_filter($s);
  190. $content = str_replace($match[0][$k], "", $content);
  191. }
  192. return $content;
  193. }
  194. private function parse_elseif($content) {
  195. if(empty($content)) return false;
  196. //preg_match_all("/".$this->template_tag_left."elseif\s+(.*?)".$this->template_tag_right."/is", $content, $match);
  197. $match = $this->preg_match_all("elseif\s+(.*?)", $content);
  198. if(!isset($match[1]) || !is_array($match[1])) return $content;
  199. foreach($match[1] as $k => $v) {
  200. //$s = preg_split("/\s+/is", $v);
  201. //$s = array_filter($s);
  202. $content = str_replace($match[0][$k], "", $content);
  203. }
  204. return $content;
  205. }
  206. /**
  207. * 解析 include include标签不是实时更新的 当主体文件更新的时候 才更新标签内容,所以想include生效 请修改一下主体文件
  208. * 记录一下 有时间开发一个当DEBUG模式的时候 每次执行删除模版编译文件
  209. * 使用方法 <{include file="www.phpddt.com"}>
  210. * @param $content 模板内容
  211. * @return html
  212. */
  213. private function parse_include($content) {
  214. if(empty($content)) return false;
  215. //preg_match_all("/".$this->template_tag_left."include\s+(.*?)".$this->template_tag_right."/is", $content, $match);
  216. $match = $this->preg_match_all("include\s+(.*?)", $content);
  217. if(!isset($match[1]) || !is_array($match[1])) return $content;
  218. foreach($match[1] as $match_key => $match_value) {
  219. $a = preg_split("/\s+/is", $match_value);
  220. $new_tag = array();
  221. //分析元素
  222. foreach($a as $t) {
  223. $b = explode('=', $t);
  224. if(in_array($b[0], $this->tag_include)) {
  225. if(!empty($b[1])) {
  226. $new_tag[$b[0]] = str_replace("\"", "", $b[1]);
  227. } else {
  228. core::show_error('模板路径不存在!');
  229. }
  230. }
  231. }
  232. extract($new_tag);
  233. //查询模板文件
  234. foreach($this->conf['view_path'] as $v){
  235. $conf_view_tpl = $v.$file;//include 模板文件
  236. if(is_file($conf_view_tpl)) {
  237. $c = $this->read_file($conf_view_tpl);
  238. $inc_file = str_replace($this->_tpl_suffix, '', basename($file));
  239. $this->view_path_param = dirname($file).'/';
  240. $compile_dirpath = $this->check_temp_compile();
  241. $include_file = $this->template_replace($c, $compile_dirpath, $inc_file);//解析
  242. break;
  243. } else {
  244. core::show_error('模板文件不存在,请仔细检查 文件:'. $conf_view_tpl);
  245. }
  246. }
  247. $content = str_replace($match[0][$match_key], '', $content);
  248. }
  249. return $content;
  250. }
  251. /**
  252. * 解析 foreach
  253. * 使用方法 <{foreach from=$lists item=value key=kk}>
  254. * @param $content 模板内容
  255. * @return html 解析后的内容
  256. */
  257. private function parse_foreach($content) {
  258. if(empty($content)) return false;
  259. //preg_match_all("/".$this->template_tag_left."foreach\s+(.*?)".$this->template_tag_right."/is", $content, $match);
  260. $match = $this->preg_match_all("foreach\s+(.*?)", $content);
  261. if(!isset($match[1]) || !is_array($match[1])) return $content;
  262. foreach($match[1] as $match_key => $value) {
  263. $split = preg_split("/\s+/is", $value);
  264. $split = array_filter($split);
  265. $new_tag = array();
  266. foreach($split as $v) {
  267. $a = explode("=", $v);
  268. if(in_array($a[0], $this->tag_foreach)) {//此处过滤标签 不存在过滤
  269. $new_tag[$a[0]] = $a[1];
  270. }
  271. }
  272. $key = '';
  273. extract($new_tag);
  274. $key = ($key) ? '$'.$key.' =>' : '' ;
  275. $s = '';
  276. $content = $this->str_replace($match[0][$match_key], $s, $content);
  277. }
  278. return $content;
  279. }
  280. /**
  281. * 匹配结束 字符串
  282. */
  283. private function parse_comm($content) {
  284. $search = array(
  285. "/".$this->template_tag_left."\/foreach".$this->template_tag_right."/is",
  286. "/".$this->template_tag_left."\/if".$this->template_tag_right."/is",
  287. "/".$this->template_tag_left."else".$this->template_tag_right."/is",
  288. );
  289. $replace = array(
  290. "",
  291. "",
  292. ""
  293. );
  294. $content = preg_replace($search, $replace, $content);
  295. return $content;
  296. }
  297. /**
  298. * 检查编译目录 如果没有创建 则递归创建目录
  299. * @param string $path 文件完整路径
  300. * @return 模板内容
  301. */
  302. private function check_temp_compile() {
  303. //$paht = $this->template_c.
  304. $tpl_path = ($this->view_path_param) ? $this->view_path_param : $this->get_tpl_path() ;
  305. $all_tpl_apth = $this->template_c.$tpl_path;
  306. if(!is_dir($all_tpl_apth)) {
  307. $this->create_dir($tpl_path);
  308. }
  309. return $all_tpl_apth;
  310. }
  311. /**
  312. * 读文件
  313. * @param string $path 文件完整路径
  314. * @return 模板内容
  315. */
  316. private function read_file($path) {
  317. //$this->check_file_limits($path, 'r');
  318. if(($r = @fopen($path, 'r')) === false) {
  319. core::show_error('模版文件没有读取或执行权限,请检查!');
  320. }
  321. $content = fread($r, filesize($path));
  322. fclose($r);
  323. return $content;
  324. }
  325. /**
  326. * 写文件
  327. * @param string $filename 文件名
  328. * @param string $content 模板内容
  329. * @return 文件名
  330. */
  331. private function compile_file($filename, $content, $dir) {
  332. if(empty($filename)) core::show_error("{$filename} Creation failed");
  333. $content = $this->body_content($content);//对文件内容操作
  334. //echo '开始编译了=====';
  335. $f = $dir.$filename.$this->tpl_compile_suffix;
  336. //$this->check_file_limits($f, 'w');
  337. if(($fp = @fopen($f, 'wb')) === false) {
  338. core::show_error($f.'
    编译文件失败,请检查文件权限.');
  339. }
  340. //开启flock
  341. flock($fp, LOCK_EX + LOCK_NB);
  342. fwrite($fp, $content, strlen($content));
  343. flock($fp, LOCK_UN + LOCK_NB);
  344. fclose($fp);
  345. return $f;
  346. }
  347. /**
  348. * 这个检查文件权限函数 暂时废弃了
  349. * @param [$path] [路径]
  350. * @param [status] [w=write, r=read]
  351. */
  352. public function check_file_limits($path , $status = 'rw') {
  353. clearstatcache();
  354. if(!is_writable($path) && $status == 'w') {
  355. core::show_error("{$path}
    没有写入权限,请检查.");
  356. } elseif(!is_readable($path) && $status == 'r') {
  357. core::show_error("{$path}
    没有读取权限,请检查.");
  358. } elseif($status == 'rw') {//check wirte and read
  359. if(!is_writable($path) || !is_readable($path)) {
  360. core::show_error("{$path}
    没有写入或读取权限,请检查");
  361. }
  362. }
  363. }
  364. /**
  365. * 读取编译后模板的第一行 并分析成数组
  366. * @param string $filepath 文件路径
  367. * @param number $line 行数
  368. * @return 返回指定行数的字符串
  369. */
  370. /*
  371. private function get_compile_header($filepath, $line = 0) {
  372. if(($file_arr = @file($filepath)) === false) {
  373. core::show_error($filepath.'
    读取文件失败,请检查文件权限!');
  374. }
  375. return $file_arr[0];
  376. }
  377. */
  378. /**
  379. * 分析头部注释的日期
  380. * @param string $cotnent 编译文件头部第一行
  381. * @return 返回上一次日期
  382. */
  383. /*
  384. private function get_compile_header_comment($content) {
  385. preg_match("/\/\*(.*?)\*\//", $content, $match);
  386. if(!isset($match[1]) || empty($match[1])) core::show_error('编译错误!');
  387. $arr = explode('|', $match[1]);
  388. $arr_date = explode('##', $arr[0]);
  389. return $arr_date[1];
  390. }
  391. */
  392. /**
  393. * 获取模板完整路径 并返回已存在文件
  394. * @param string $filename 文件名
  395. * @param string $view_path 模板路径
  396. * @return
  397. */
  398. private function get_tpl($filename, $view_path) {
  399. empty($filename) && $filename = $this->tpl_name;
  400. //遍历模板路径
  401. foreach($this->conf['view_path'] as $path) {
  402. if($view_path) {//直接从tpl跟目录找文件
  403. $tpl_path = $path.$view_path;
  404. $view_file_path = $tpl_path.$filename.$this->_tpl_suffix;
  405. } else {//根据目录,控制器,方法开始找文件
  406. $view_file_path = ($tpl_path = $this->get_tpl_path($path)) ? $tpl_path.$filename.$this->_tpl_suffix : exit(0);
  407. }
  408. if(is_file($view_file_path)) {
  409. //向指针传送模板路径和模板名称
  410. $this->template_path = $tpl_path;//
  411. $this->template_name = $filename.$this->_tpl_suffix;
  412. return true;
  413. } else {
  414. core::show_error($filename.$this->_tpl_suffix.'模板不存在');
  415. }
  416. }
  417. }
  418. /**
  419. * 获取模板路径
  420. * @param string $path 主目录
  421. * @return URL D和M的拼接路径
  422. */
  423. private function get_tpl_path($path = '') {
  424. core::get_directory_name() && $path_arr[0] = core::get_directory_name();
  425. core::get_controller_name() && $path_arr[1] = core::get_controller_name();
  426. (is_array($path_arr)) ? $newpath = implode('/', $path_arr) : core::show_error('获取模板路径失败!') ;
  427. return $path.$newpath.'/';
  428. }
  429. /**
  430. * 创建目录
  431. * @param string $path 目录
  432. * @return
  433. */
  434. private function create_dir($path, $mode = 0777){
  435. if(is_dir($path)) return false;
  436. $dir_arr = explode('/', $path);
  437. $dir_arr = array_filter($dir_arr);
  438. $allpath = '';
  439. $newdir = $this->template_c;
  440. foreach($dir_arr as $dir) {
  441. $allpath = $newdir.'/'.$dir;
  442. if(!is_dir($allpath)) {
  443. $newdir = $allpath;
  444. if(!@mkdir($allpath, $mode)) {
  445. core::show_error( $allpath.'
    创建目录失败,请检查是否有可都写权限!');
  446. }
  447. chmod($allpath, $mode);
  448. } else {
  449. $newdir = $allpath;
  450. }
  451. }
  452. return true;
  453. }
  454. public function __destruct(){
  455. $this->vars = null;
  456. $this->view_path_param = null;
  457. }
  458. };

人气教程排行