> 백엔드 개발 > PHP 튜토리얼 > PHP MVC 모드에서 템플릿 엔진 개발 경험 공유

PHP MVC 모드에서 템플릿 엔진 개발 경험 공유

WBOY
풀어 주다: 2016-07-25 09:05:29
원래의
1235명이 탐색했습니다.
  1. /*
  2. * 클래스: 模板解析类
  3. * 작성자: 51JS.COM-ZMM
  4. * 날짜: 2011.3.1
  5. * 이메일: 304924248@qq.com
  6. * 블로그: http://www.cnblogs.com/cnzmm/
  7. * 링크: http://bbs.it-home.org
  8. */
  9. 클래스 템플릿 {
  10. public $html, $vars, $bTag, $eTag;
  11. 공개 $bFlag='{', $eFlag='}', $pfix='zmm:';
  12. 비공개 $폴더, $file;
  13. function __construct($vars=array()) {
  14. !empty($vars) && $this->vars = $vars;
  15. !empty($GLOBALS['cfg_tag_prefix']) &&
  16. $this->pfix = $GLOBALS['cfg_tag_prefix'].':';
  17. $this->bTag = $this->bFlag.$this->pfix;
  18. $this->eTag = $this->bFlag.'/'.$this->pfix;
  19. empty(Tags::$vars) && Tags::$vars = &$this->vars;
  20. }
  21. 공용 함수 LoadTpl($tpl) {
  22. $this->file = $this->GetTplPath($tpl);
  23. 태그::$file = &$this->file;
  24. if (is_file($this->file)) {
  25. if ($this->GetTplHtml()) {
  26. $this->SetTplTags();
  27. } else {
  28. exit('模板文件加载失败!');
  29. }
  30. } else {
  31. exit('模板文件['.$this->file.']불存재!');
  32. }
  33. }
  34. 비공개 함수 GetTplPath($tpl) {
  35. $this->folder = WEBSITE_DIRROOT.
  36. $GLOBALS['cfg_tpl_root'];
  37. $this->폴더를 반환합니다.'/'.$tpl;
  38. }
  39. 비공개 함수 GetTplHtml() {
  40. $html = self::FmtTplHtml(file_get_contents($this->file));
  41. if (!empty($html)) {
  42. $callFunc = Tags::$prefix.'구문';
  43. $this->html = Tags::$callFunc($html, new Template());
  44. } else {
  45. exit('模板文件内容为空!');
  46. } true를 반환합니다.
  47. }
  48. 정적 공개 함수 FmtTplHtml($html) {
  49. return preg_replace('/(r)|(n)|(t)|(s{2,})/is', '', $html);
  50. }
  51. 공용 함수 Register($vars=array()) {
  52. if (is_array($vars)) {
  53. $this->vars = $vars;
  54. 태그::$vars = &$this->vars;
  55. }
  56. }
  57. 공용 함수 Display($bool=false, $name="", $time=0) {
  58. if (!empty($this->html)) {
  59. if ($bool && !empty($name)) {
  60. if (!is_int($time)) $time = 600;
  61. $cache = 새 캐시($time);
  62. $cache->Set($name, $this->html);
  63. }
  64. echo $this->html; 플러시();
  65. } else {
  66. exit('模板文件内容为空!');
  67. }
  68. }
  69. 공용 함수 SetAssign($souc, $info) {
  70. if (!empty($this->html)) {
  71. $this->html = str_ireplace ($souc, self::FmtTplHtml($info), $this->html);
  72. } else {
  73. exit('模板文件内容为空!');
  74. }
  75. }
  76. 비공개 함수 SetTplTags() {
  77. $this->SetPanelTags(); $this->SetTrunkTags(); $this->RegHatchVars();
  78. }
  79. 비공개 함수 SetPanelTags() {
  80. $rule = $this->bTag.'([^'.$this->eFlag.'] )/'.$this-> e플래그;
  81. preg_match_all('/'.$rule.'/ism', $this->html, $out_matches);
  82. $this->TransTag($out_matches, '패널'); unset($out_matches);
  83. }
  84. 비공개 함수 SetTrunkTags() {
  85. $rule = $this->bTag.'(w )s*([^'.$this->eFlag.']*?)' .$this->eFlag.
  86. '((?:(?!'.$this->bTag.')[Ss]*?|(?R))*)'.$this->eTag.'\1s*'. $this->eFlag;
  87. preg_match_all('/'.$rule.'/ism', $this->html, $out_matches);
  88. $this->TransTag($out_matches, '트렁크'); unset($out_matches);
  89. }
  90. 비공개 함수 TransTag($result, $type) {
  91. if (!empty($result[0])) {
  92. switch ($type) {
  93. case 'panel' : {
  94. for ($i = 0; $i $strTag = 폭발(' ', $result[1][$i], 2);
  95. if (strpos($strTag[0], '.')) {
  96. $itemArg =Explode('.', $result[1][$i], 2);
  97. $callFunc = 태그::$prefix.ucfirst($itemArg[0]);
  98. if (method_exists('Tags', $callFunc)) {
  99. $html = Tags::$callFunc(chop($itemArg[1]));
  100. if ($html !== false) {
  101. $this->html = str_ireplace($result[0][$i], $html, $this->html);
  102. }
  103. }
  104. } else {
  105. $rule = '^([^s] )s*([Ss] )$';
  106. preg_match_all('/'.$rule.'/is', Trim($result[1][$i]), $tmp_matches);
  107. $callFunc = 태그::$prefix.ucfirst($tmp_matches[1][0]);
  108. if (method_exists('Tags', $callFunc)) {
  109. $html = Tags::$callFunc($tmp_matches[2][0]);
  110. if ($html !== false) {
  111. $this->html = str_ireplace($result[0][$i], $html, $this->html);
  112. }
  113. } unset($tmp_matches);
  114. }
  115. } 휴식;
  116. }
  117. case '트렁크': {
  118. for ($i = 0; $i < count($result[0]); $i ) {
  119. $callFunc = 태그::$ prefix.ucfirst($result[1][$i]);
  120. if (method_exists('Tags', $callFunc)) {
  121. $html = Tags::$callFunc($result[2][$i], $result[3][$i]);
  122. $this->html = str_ireplace($result[0][$i], $html, $this->html);
  123. }
  124. } 휴식;
  125. }
  126. 기본값: 중단;
  127. }
  128. } else {
  129. false를 반환합니다.
  130. }
  131. }
  132. 비공개 함수 RegHatchVars() {
  133. $this->SetPanelTags();
  134. }
  135. function __destruct() {}
  136. }
  137. ?>
复代码

2. 태그 파싱 클래스 : (데이터 및 목록 태그에 대한 파싱 아이디어를 일시적으로 제공)

  1. /*
  2. * 클래스: 标签解析类
  3. * 작성자: 51JS.COM-ZMM
  4. * 날짜: 2011.3.2
  5. * 이메일: 304924248@qq.com
  6. * 블로그: http://www.cnblogs.com/cnzmm/
  7. * 링크: http://bbs.it-home.org
  8. */
  9. class 태그 {
  10. static private $attrs=null;
  11. 정적 공개 $file, $vars, $rule, $prefix='TAG_';
  12. 정적 공개 함수 TAG_Syntax($html, $that) {
  13. $rule = $that->bTag.'ifs ([^'.$that->eFlag.'] )s*'.$ that->eFlag;
  14. $html = preg_replace('/'.$rule.'/ism', '', $html);
  15. $rule = $that->bTag.'elseifs ([^'.$that->eFlag.'] )s*'.$that->eFlag;
  16. $html = preg_replace('/'.$rule.'/ism', '', $html);
  17. $rule = $that->bTag.'elses*'.$that->eFlag;
  18. $html = preg_replace('/'.$rule.'/ism', '', $html);
  19. $rule = $that->bTag.'loops (S )s (S )s*'.$that->eFlag;
  20. $html = preg_replace('/'.$rule.'/ism', '', $html);
  21. $rule = $that->bTag.'loops (S )s (S )s (S )s*'.$that->eFlag;
  22. $html = preg_replace('/'.$rule.'/ism', ' \3) { ?>', $html);
  23. $rule = $that->eTag.'(if|loop)s*'.$that->eFlag;
  24. $html = preg_replace('/'.$rule.'/ism', '', $html);
  25. $rule = $that->bTag.'phps*'.$that->eFlag.'((?:(?!'.
  26. $that->bTag.')[Ss] *?|(?R))*)'.$that->eTag.'phps*'.$that->eFlag;
  27. $html = preg_replace('/'.$rule.'/ism', '', $html);
  28. return self::TAG_Execute($html);
  29. }
  30. 정적 공개 함수 TAG_List($attr, $html) {
  31. if (!empty($html)) {
  32. if (self::TAG_HaveTag($html)) {
  33. return self::TAG_DealTag($attr, $html, true);
  34. } else {
  35. return self::TAG_GetData($attr, $html, true);
  36. }
  37. } else {
  38. exit('标签{list}的内容为空!');
  39. }
  40. }
  41. 정적 공개 함수 TAG_Data($attr, $html) {
  42. if (!empty($html)) {
  43. if (self::TAG_HaveTag($html)) {
  44. return self::TAG_DealTag($attr, $html, false);
  45. } else {
  46. return self::TAG_GetData($attr, $html, false);
  47. }
  48. } else {
  49. exit('标签{data}的内容为空!');
  50. }
  51. }
  52. 정적 공개 함수 TAG_Execute($html) {
  53. ob_clean(); ob_start();
  54. if (!empty(self::$vars)) {
  55. is_array(self::$vars) &&
  56. extract(self::$vars, EXTR_OVERWRITE);
  57. }
  58. $file_inc = WEBSITE_DIRINC.'/buffer/'.
  59. md5(uniqid(rand(), true)).'.php';
  60. if ($fp = fopen($file_inc, 'xb')) {
  61. fwrite($fp, $html);
  62. if (fclose($fp)) {
  63. include($file_inc);
  64. $html = ob_get_contents();
  65. } 설정 해제($fp);
  66. } else {
  67. exit('模板解析文件生成失败!');
  68. } ob_end_clean(); @unlink($file_inc);
  69. $html을 반환합니다.
  70. }
  71. 정적 비공개 함수 TAG_HaveTag($html) {
  72. $bool_has = false;
  73. $tpl_ins = 새 템플릿();
  74. self::$rule = $tpl_ins->bTag.'([^'.$tpl_ins->eFlag.'] )/'.$tpl_ins->eFlag;
  75. $bool_has = $bool_has || preg_match('/'.self::$rule.'/ism', $html);
  76. self::$rule = $tpl_ins->bTag.'(w )s*([^'.$tpl_ins->eFlag.']*?)'.$tpl_ins->eFlag.
  77. '((?:(?!'.$tpl_ins->bTag.')[Ss]*?|(?R))*)'.$tpl_ins->eTag.'\1s*'. $tpl_ins->eFlag;
  78. $bool_has = $bool_has || preg_match('/'.self::$rule.'/ism', $html);
  79. 설정 해제($tpl_ins);
  80. $bool_has를 반환합니다.
  81. }
  82. 정적 비공개 함수 TAG_DealTag($attr, $html, $list) {
  83. preg_match_all('/'.self::$rule.'/ism', $html, $out_matches);
  84. if (!empty($out_matches[0])) {
  85. $child_node = array();
  86. for ($i = 0; $i $child_node[] = $out_matches[3][$i];
  87. $html = str_ireplace($out_matches[3][$i], '{-->>child_node_'.$i.'<<--}', $html);
  88. }
  89. $html = self::TAG_GetData($attr, $html, $list);
  90. for ($i = 0; $i < count($out_matches[0]); $i ) {
  91. $html = str_ireplace('{-->>child_node_'.$i.' <<--}', $child_node[$i], $html);
  92. }
  93. preg_match_all('/'.self::$rule.'/ism', $html, $tmp_matches);
  94. if (!empty($tmp_matches[0])) {
  95. for ($i = 0; $i < count($tmp_matches[0]); $i ) {
  96. $callFunc = self ::$prefix.ucfirst($tmp_matches[1][$i]);
  97. if (method_exists('Tags', $callFunc)) {
  98. $temp = self::$callFunc($tmp_matches[2][$i], $tmp_matches[3][$i]);
  99. $html = str_ireplace($tmp_matches[0][$i], $temp, $html);
  100. }
  101. }
  102. }
  103. unset($tmp_matches);
  104. }
  105. unset($out_matches); $html을 반환합니다.
  106. }
  107. 정적 비공개 함수 TAG_GetData($attr, $html, $list=false) {
  108. if (!empty($attr)) {
  109. $attr_ins = new Attbt($attr);
  110. $attr_arr = $attr_ins->attrs;
  111. if (is_array($attr_arr)) {
  112. extract($attr_arr, EXTR_OVERWRITE);
  113. $source = 테이블_이름($source, $column);
  114. $rule = '[필드:s*(w )s*([^]]*?)s*/?]';
  115. preg_match_all('/'.$rule.'/is', $html, $out_matches);
  116. $data_str = '';
  117. $data_ins = 새로운 DataSql();
  118. $attr_where = $attr_order = '';
  119. if (!empty($where)) {
  120. $where = str_replace(',', ' and ', $where);
  121. $attr_where = '어디'. $어디서;
  122. }
  123. if (!empty($order)) {
  124. $attr_order = '주문 기준'.$order;
  125. } else {
  126. $fed_name = '';
  127. $fed_ins = $data_ins->GetFedNeedle($source);
  128. $fed_cnt = $data_ins->GetFedCount($fed_ins);
  129. for ($i = 0; $i $fed_flag = $data_ins->GetFedFlag($fed_ins, $i);
  130. if (preg_match('/auto_increment/ism', $fed_flag)) {
  131. $fed_name = $data_ins->GetFedName($fed_ins, $i);
  132. 휴식;
  133. }
  134. }
  135. if (!empty($fed_name))
  136. $attr_order = ''.$fed_name으로 주문하세요.' 설명';
  137. }
  138. if ($list == true) {
  139. if (empty($source) &&empty($sql)) {
  140. exit('标签{list}必须指정source属性!' );
  141. }
  142. $attr_rows = $attr_page = '';
  143. if ($rows > 0) {
  144. $attr_rows = ' 제한 0,'.$rows;
  145. }
  146. if (!empty($sql)) {
  147. $data_sql = $sql;
  148. } else {
  149. $data_sql = '`'.$source.'`에서 *를 선택하세요.
  150. $attr_where.$attr_order.$attr_rows;
  151. }
  152. if ($pages=='true' && !empty($size)) {
  153. $data_num = $data_ins->GetRecNum($data_sql);
  154. $page_cnt = ceil($data_num / $size);
  155. 글로벌 $page;
  156. if (!isset($page) || $page < 1) $page = 1;
  157. if ($page > $page_cnt) $page = $page_cnt;
  158. $data_sql = '``.$source.'`'.$attr_where에서 *를 선택하세요.
  159. $attr_order.' 제한 '.($page-1) * $size.','.$size;
  160. $GLOBALS['cfg_page_curr'] = $페이지;
  161. $GLOBALS['cfg_page_prev'] = $페이지 - 1;
  162. $GLOBALS['cfg_page_next'] = $페이지 1;
  163. $GLOBALS['cfg_page_nums'] = $page_cnt;
  164. if (function_exists('list_pagelink')) {
  165. $GLOBALS['cfg_page_list'] = list_pagelink($page, $page_cnt, 2);
  166. }
  167. }
  168. $data_idx = 0;
  169. $data_ret = $data_ins->SqlCmdExec($data_sql);
  170. while ($row = $data_ins->GetRecArr($data_ret)) {
  171. if ($skip > 0 && !empty($flag)) {
  172. $data_idx != 0 &&
  173. $data_idx % $skip == 0 &&
  174. $data_str .= $flag;
  175. }
  176. $data_tmp = $html;
  177. $data_tmp = str_ireplace('@idx', $data_idx, $data_tmp);
  178. for ($i = 0; $i $data_tmp = str_ireplace($out_matches[0][$i],
  179. $row [$out_matches[1][$i]], $data_tmp);
  180. }
  181. $data_str .= $data_tmp; $data_idx ;
  182. }
  183. } else {
  184. if (empty($source)) {
  185. exit('标签{data}必须指정source属性!');
  186. }
  187. $data_sql = '``.$source에서 *를 선택하세요.
  188. '`'.$attr_where.$attr_order;
  189. $row = $data_ins->GetOneRec($data_sql);
  190. if (is_array($row)) {
  191. $data_tmp = $html;
  192. for ($i = 0; $i $data_val = $row[$out_matches[1][$i]];
  193. if (empty($out_matches[2][$i])) {
  194. $data_tmp = str_ireplace($out_matches[0][$i], $data_val, $data_tmp);
  195. } else {
  196. $attr_str = $out_matches[2][$i];
  197. $attr_ins = 새 속성($attr_str);
  198. $func_txt = $attr_ins->attrs['function'];
  199. if (!empty($func_txt)) {
  200. $func_tmp = 폭발('(', $func_txt);
  201. if (function_exists($func_tmp[0])) {
  202. eval(' $func_ret ='.str_ireplace('@me',
  203. '''.$data_val.''', $func_txt))
  204. $data_tmp = str_ireplace($out_matches[0][$i], $ func_ret, $data_tmp);
  205. } else {
  206. exit('调用了不存재적函数!')
  207. }
  208. } else {
  209. exit('标签设置属无效!' );
  210. }
  211. }
  212. $data_str .= $data_tmp
  213. }
  214. }
  215. unset($data_ins)
  216. return $data_str; >} else {
  217. exit('标签设置属性无效!');
  218. }
  219. } else {
  220. exit('没有设置标签属性!')
  221. }
  222. }
  223. 정적 공용 함수 __callStatic($name, $args) {
  224. exit('标签{'.$name.'}不存재!')
  225. }
  226. }
  227. ?>
제제대码
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿