> 백엔드 개발 > PHP 튜토리얼 > Discuz 템플릿 엔진

Discuz 템플릿 엔진

WBOY
풀어 주다: 2016-07-25 09:06:18
원래의
1378명이 탐색했습니다.
Discuz 템플릿 엔진

Discuz의 템플릿 엔진은 비교적 좋은 템플릿 엔진 클래스입니다. 오래 전에 인터넷에서 찾았습니다. 시각적으로 보면 이 Discuz 템플릿 엔진은 DZ7.2 이전 버전입니다. . 저도 사용하기가 너무 쉬워서 이 템플릿 클래스를 공유하고 싶습니다.

파일이 2개 있습니다. 템플릿 클래스, 템플릿 교체에 꼭 필요한 함수
원주소 : http://blog.qita.in

  1. ?/**
  2. * 템플릿 클래스 - Discuz 템플릿 엔진을 사용하여 구문 분석
  3. * http://blog.qita.in
  4. */
  5. require_once(DIR_ROOT . '/../function/template.func.php ');
  6. 클래스 템플릿 {
  7. const DIR_SEP = DIRECTORY_SEPARATOR;
  8. /**
  9. * 템플릿 인스턴스
  10. *
  11. * @staticvar
  12. * @var object 템플릿
  13. */
  14. protected static $_instance;
  15. /**
  16. * 템플릿 매개변수 정보
  17. *
  18. * @var array
  19. */
  20. protected $_options = array();
  21. /**
  22. * 싱글톤 모드 호출 방식
  23. *
  24. * @static
  25. * @return object Template
  26. */
  27. public static function getInstance() {
  28. if (!self :: $_instance instanceof self)
  29. self :: $_instance = new self();
  30. return self :: $_instance;
  31. }
  32. /**
  33. * 생성자
  34. *
  35. * @return void
  36. */
  37. 개인 함수 __construct () {
  38. $this -> _options = array('template_dir' => 'templates' . self :: DIR_SEP, // 템플릿 파일이 있는 디렉터리
  39. 'cache_dir' => ' template' . self :: DIR_SEP . 'cache' . self :: DIR_SEP, // 캐시 파일이 저장되는 디렉토리
  40. 'auto_update' => false, // 템플릿 파일 수정 시 캐시를 재생성할지 여부
  41. 'cache_lifetime' => 0, // 캐시 수명 주기(분), 0은 영구적임을 의미합니다.
  42. );
  43. }
  44. /**
  45. * 템플릿 매개변수 정보 설정
  46. *
  47. * @param array $options 매개변수 배열
  48. * @return void
  49. */
  50. 공개 함수 setOptions (배열 $options) {
  51. foreach ($options as $name => $value)
  52. $this -> set($name, $value);
  53. }
  54. / **
  55. * 템플릿 매개변수 설정
  56. *
  57. * @param string $name 매개변수 이름
  58. * @param 혼합 $value 매개변수 값
  59. * @return void
  60. * /
  61. 공용 함수 세트($name, $value) {
  62. 스위치($name) {
  63. 케이스 'template_dir':
  64. $value = $this -> ($value);
  65. if (!file_exists($value))
  66. $this -> _options['template_dir'] = $value;
  67. break;
  68. case 'cache_dir':
  69. $value = $this -> _trimpath($value);
  70. if (!file_exists($value) ))
  71. $this -> _throwException("지정된 캐시 디렉터리 "$value""를 찾을 수 없습니다);
  72. $this -> _options['cache_dir'] = $value;
  73. break;
  74. 케이스 'auto_update':
  75. $this -> _options['auto_update'] = (부울) $value;
  76. break;
  77. 케이스 'cache_lifetime':
  78. $this -> _options['cache_lifetime'] = ( float) $value;
  79. break;
  80. 기본값:
  81. $this -> _throwException("알 수 없는 템플릿 구성 옵션 "$name"");
  82. }
  83. }
  84. /**
  85. * 매직 메소드를 통해 템플릿 매개변수 설정
  86. *
  87. * @see Template::set()
  88. * @param string $name 매개변수 이름
  89. * @param 혼합 $value 매개변수 값
  90. * @return 무효
  91. */
  92. 공개 함수 __set($name, $value) {
  93. $this -> set($name, $value);
  94. }
  95. /**
  96. * 템플릿 파일 가져오기
  97. *
  98. * @param string $file 템플릿 파일 이름
  99. * @return 문자열
  100. */
  101. 공용 함수 getfile($file) {
  102. $cachefile = $this -> _getCacheFile($file);
  103. if (! file_exists($cachefile))
  104. $this -> 캐시($file);
  105. return $cachefile;
  106. }
  107. /**
  108. * 템플릿 파일의 캐시 업데이트 여부 감지
  109. *
  110. * @param string $file 템플릿 파일 이름
  111. * @param string $md5data 템플릿 파일 md5 확인 정보
  112. * @param 정수 $ md5data 템플릿 파일 만료 시간 확인 정보
  113. * @return void
  114. */
  115. 공개 함수 check($file, $md5data , $expireTime) {
  116. if ($this -> _options['auto_update'] && md5_file($this -> _getTplFile($file)) != $md5data)
  117. $this -> 캐시( $file);
  118. if ($this -> _options['cache_lifetime'] != 0 && (time() - $expireTime >= $this -> _options['cache_lifetime '] * 60))
  119. $this -> 캐시($file);
  120. }
  121. /**
  122. * 템플릿 파일 캐시
  123. *
  124. * @param string $file 템플릿 파일 이름
  125. * @return void
  126. */
  127. 공용 함수 캐시($file) {
  128. $tplfile = $this -> _getTplFile($file);
  129. if (!is_reader($tplfile)) {
  130. $this -> _throwException("템플릿 파일 "$tplfile"은 찾을 수 없거나 열 수 없음");
  131. }
  132. // 템플릿 콘텐츠 가져오기
  133. $template = file_get_contents($tplfile);
  134. // 필터
  135. $template = preg_replace(" //s", "{\1}", $template)
  136. // 언어 팩 변수 교체
  137. // $template = preg_replace( "/{langs (. ?)}/ies", "언어var('\1')", $template);
  138. // PHP 개행 문자 교체
  139. $template = str_replace("{LF}", "="\n"?>", $template);
  140. // 직접 변수 출력 교체
  141. $varRegexp = "((\$[a-zA-Z_x7f-xff][ a-zA-Z0-9_x7f-xff]*)"
  142. . "([[a-zA-Z0-9_-."'[]$x7f-xff] ])*)";
  143. $template = preg_replace("/{(\$[a-zA-Z0-9_[]'"$.x7f-xff] )}/s", "=\1?>", $template);
  144. $template = preg_replace("/$varRegexp/es", "addquote('=\1?>')", $template);
  145. $template = preg_replace("/= =$varRegexp?>?>/es", "addquote('=\1?>')", $template);
  146. // 템플릿 로딩 명령 교체
  147. $ template = preg_replace("/[nrt]*{templates ([a-z0-9_] )}[nrt]*/is",
  148. "rn include($template->getfile('\1 ' )); ?>rn",
  149. $template
  150. );
  151. $template = preg_replace("/[nrt]*{템플릿 (. ?)}[nrt]*/is",
  152. "rn include($template->getfile(\1)); ?>rn",
  153. $template
  154. )
  155. // 특정 함수 교체
  156. $template = preg_replace ("/[nrt]*{evals (. ?)}[nrt]*/ies",
  157. "stripvtags(' \1 ?>','')",
  158. $template
  159. );
  160. $template = preg_replace("/[nrt]*{echos (. ?)}[nrt]*/ies",
  161. "stripvtags(' echo \1; ?> ; ','')",
  162. $template
  163. );
  164. $template = preg_replace("/([nrt]*){elseifs (. ?)}([nrt]*)/ies" ,
  165. "stripvtags('\1 } elseif(\2) { ?>\3','')",
  166. $template
  167. );
  168. $template = preg_replace(" / ([nrt]*){else}([nrt]*)/is",
  169. "\1 } else { ?>\2",
  170. $template
  171. );
  172. // 루프 함수 및 조건 판단문 교체
  173. $nest = 5;
  174. for ($i = 0; $i $template = preg_replace("/[ nrt ]*{loops (S )s (S )}[nr]*(. ?)[nr]*{/loop}[nrt]*/ies",
  175. "stripvtags(' if(is_array ( \1)) { foreach(\1 as \2) { ?>','\3 } } ?>')",
  176. $template
  177. );
  178. $template = preg_replace ("/[nrt]*{루프 (S )s (S )s (S )}[nrt]*(. ?)[nrt]*{/loop}[nrt]*/ies",
  179. " Stripvtags (' if(is_array(\1)) { foreach(\1 as \2 => \3) { ?>','\4 } } ?>')",
  180. $template
  181. );
  182. $template = preg_replace("/([nrt]*){ifs (. ?)}([nr]*)(. ?)([nr]*){/if } ([nrt]*)/ies",
  183. "stripvtags('\1 if(\2) { ?>\3','\4\5 } ?>\6') " ,
  184. $template
  185. );
  186. }
  187. // 상수 교체
  188. $template = preg_replace("/{([a-zA-Z_x7f-xff][a-zA-Z0 - 9_x7f-xff]*)}/s",
  189. "=\1?>",
  190. $template
  191. );
  192. // PHP 코드 구분선과 줄 사이의 추가 공백을 삭제합니다. break
  193. $template = preg_replace("/ ?>[nr]* /s", " ", $template)
  194. // 기타 대체
  195. $template = preg_replace("/ " (http)?[w./:] ?[^"] ?&[^"] ?"/e",
  196. "transamp('\0')",
  197. $template
  198. ) ;
  199. $template = preg_replace("/<script>]*?src="(. ?)".*?>s*</script>/ise",
  200. "stripscriptamp( '\1')",
  201. $template
  202. );
  203. $template = preg_replace("/[nrt]*{블록 ([a-zA-Z0-9_] )}(. ?) { /block}/ies",
  204. "stripblock('\1', '\2')",
  205. $template
  206. );
  207. // md5 및 만료 확인 추가
  208. $md5data = md5_file($tplfile);
  209. $expireTime = time();
  210. $template = " if (!class_exists('template')) die('Access Denied');"
  211. . "$template->getInstance()->check('$file', '$md5data', $expireTime);"
  212. . "?>rn$template"
  213. // 쓰기 캐시 파일
  214. $cachefile = $this -> _getCacheFile($file);
  215. $makepath = $this -> _makepath($cachefile);
  216. if ($makepath !== true)
  217. $this -> _throwException("캐시 디렉터리 "$makepath"를 생성할 수 없습니다");
  218. file_put_contents($cachefile, $template);
  219. }
  220. /**
  221. * 운영체제에 맞는 형태로 경로를 수정하세요
  222. *
  223. * @param string $path path name
  224. * @return string
  225. * /
  226. 보호 함수 _trimpath($path) {
  227. return str_replace(array('/', '\', '//', '\\'), self :: DIR_SEP, $path);
  228. }
  229. /**
  230. * 템플릿 파일 이름 및 경로 가져오기
  231. *
  232. * @param string $file 템플릿 파일 이름
  233. * @return string
  234. */
  235. 보호 함수 _getTplFile($file) {
  236. return $this -> _trimpath($this -> _options['template_dir'] . 자기: DIR_SEP .$file);
  237. }
  238. /**
  239. * 템플릿 캐시 파일 이름 및 경로 가져오기
  240. *
  241. * @param string $file 템플릿 파일 이름
  242. * @return string
  243. */
  244. 보호 함수 _getCacheFile($file) {
  245. $file = preg_replace('/.[a-z0-9-_] $/i', '.cache.php', $file);
  246. return $this -> _trimpath($this -> _options['cache_dir'] . self :: DIR_SEP . $file);
  247. }
  248. /**
  249. * 지정된 경로를 기반으로 존재하지 않는 폴더 생성
  250. *
  251. * @param string $path 경로/폴더 이름
  252. * @return string
  253. */
  254. 보호 함수 _makepath($path ) {
  255. $dirs = 폭발(self :: DIR_SEP, dirname($this -> _trimpath($path)));
  256. $tmp = '';
  257. foreach($dirs를 $dir로) {
  258. $tmp .= $dir . self :: DIR_SEP;
  259. if (!file_exists($tmp) && !@mkdir($tmp, 0777))
  260. return $tmp;
  261. }
  262. return true;
  263. }
  264. /**
  265. * 오류 메시지 던지기
  266. *
  267. * @param string $message
  268. * @return void
  269. */
  270. 보호 함수 _throwException($message) {
  271. throw new Exception($message);
  272. }
  273. }
  274. ?> ;
复代码
  1. 模板函数文件
  2. /**
  3. * 템플릿 교체에 필요한 기능
  4. * http://blog.qita.in
  5. */
  6. 함수 transamp($template) {
  7. $ template = str_replace('&', '&', $template);
  8. $template = str_replace('&', '&', $template);
  9. $template = str_replace(' "', '"', $template);
  10. return $template;
  11. }
  12. function Stripvtags($expr, $statement) {
  13. $expr = str_replace("\"" , """, preg_replace("/=(\$. ?)?>/s", "\1", $expr));
  14. $statement = str_replace("\"", " "", $statement);
  15. $expr을 반환합니다. $statement;
  16. }
  17. function addquote($var) {
  18. return str_replace("\"", """, preg_replace("/[([a-zA-Z0-9_- .x7f-xff] )]/s", "['\1']", $var));
  19. }
  20. function Stripscriptamp($s) {
  21. $s = str_replace( '&', '&', $s);
  22. return "";
  23. }
  24. function Stripblock($var, $s) {
  25. $s = str_replace('\"', '"', $s);
  26. $s = preg_replace("/=\$ (. ?)?>/", "{$\1}", $s);
  27. preg_match_all("/=(. ?)?>/e", $s, $constary) ;
  28. $constadd = '';
  29. $constary[1] = array_unique($constary[1]);
  30. foreach($constary[1] as $const) {
  31. $constadd .= '$__' . $const .' = ' . $const . ';';
  32. }
  33. $s = preg_replace("/=(. ?)?>/", "{$__\1}", $s);
  34. $s = str_replace('?>', "n$$var .= $s = str_replace('', "nEOF;n", $ s);
  35. "";
  36. }
  37. ?>
复代码


관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿