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

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

WBOY
풀어 주다: 2016-07-29 08:44:39
원래의
957명이 탐색했습니다.

웹 시스템의 개발 및 유지 관리를 더욱 편리하게 만들어 인력과 물적 자원을 효과적으로 절약하고 점점 더 많은 기업에서 선호하고 있습니다.
템플릿 엔진은 MVC 패턴 구축 과정에서 중요한 방법입니다. 개발자는 의미를 부여하는 태그 집합을 설계하고 기술적 분석 및 처리를 통해 인터페이스 템플릿에서 데이터 로직 처리를 효과적으로 추출하고 의미를 해석하여 제어할 수 있습니다. 태그의 해당 비즈니스 로직 처리 프로그램에 제출하여 필요한 데이터를 얻어 템플릿 디자인 형태로 표시함으로써 디자이너가 표현 형태에 더욱 집중할 수 있도록 합니다. 다음은 템플릿 엔진에 대한 저의 이해와 설계 방법입니다.
정의적으로 템플릿 엔진이라고 부르지만 사실은 템플릿 데이터를 해석하는 과정입니다(개인의견^^). 웹 사이트 구축에 대한 나의 생각과 이해를 통해 웹 사이트의 표시 형식은 단일 항목과 다중 항목의 두 가지 형식으로 요약될 수 있습니다. 그런 다음 이 두 가지 상황을 처리하기 위해 두 개의 해당 태그(예: 데이터, 목록)를 설정할 수 있습니다. 포인트는 두 태그의 다층 중첩 문제를 해결해 기본적으로 인터페이스 형태의 80%를 구현하는데 적합하다는 점이다.
템플릿을 해석하는 방법에는 여러 가지가 있으며 일반적으로 사용되는 방법에는 문자열 처리(중첩 해결이 약간 까다로움) 및 정규 표현식이 포함됩니다. 여기서 선택한 정규식은 다음과 같습니다. 제가 처리하는 방법은 다음과 같습니다(이 글에서는 아이디어와 참조 코드만 제공하므로 직접 사용할 수는 없습니다).
템플릿 파일 파싱 클래스:

코드 복사 코드는 다음과 같습니다.


/*
* 클래스: 模板解析类
* 작성자: 51JS.COM-ZMM
* 날짜: 2011.3.1
* 이메일: 304924248@qq.com
* 블로그: http://www.cnblogs.com/cnzmm/
*/
클래스 템플릿 {
public $html, $vars, $bTag, $eTag;
공개 $bFlag='{', $eFlag='}', $pfix='zmm:';
비공개 $폴더, $file;
function __construct($vars=array()) {
!empty($vars) && $this->vars = $vars;
!empty($GLOBALS['cfg_tag_prefix']) &&
$this->pfix = $GLOBALS['cfg_tag_prefix'].':';
$this->bTag = $this->bFlag.$this->pfix;
$this->eTag = $this->bFlag.'/'.$this->pfix;
empty(Tags::$vars) && Tags::$vars = &$this->vars;
}
공용 함수 LoadTpl($tpl) {
$this->file = $this->GetTplPath($tpl);
태그::$file = &$this->file;
if (is_file($this->file)) {
if ($this->GetTplHtml()) {
$this->SetTplTags();
} else {
exit('模板文件加载失败!');
}
} else {
exit('模板文件['.$this->file.']불存재!');
}
}
비공개 함수 GetTplPath($tpl) {
$this->folder = WEBSITE_DIRROOT.
$GLOBALS['cfg_tpl_root'];
$this->폴더를 반환합니다.'/'.$tpl;
}
비공개 함수 GetTplHtml() {
$html = self::FmtTplHtml(file_get_contents($this->file));
if (!empty($html)) {
$callFunc = Tags::$prefix.'구문';
$this->html = Tags::$callFunc($html, new Template());
} else {
exit('模板文件内容为空!');
} true를 반환합니다.
}
정적 공개 함수 FmtTplHtml($html) {
return preg_replace('/(r)|(n)|(t)|(s{2,})/is', '', $html);
}
공용 함수 Register($vars=array()) {
if (is_array($vars)) {
$this->vars = $vars;
태그::$vars = &$this->vars;
}
}
공용 함수 Display($bool=false, $name="", $time=0) {
if (!empty($this->html)) {
if ($bool && !empty($name)) {
if (!is_int($time)) $time = 600;
$cache = 새 캐시($time);
$cache->Set($name, $this->html);
}
echo $this->html; 플러시();
} else {
exit('模板文件内容为空!');
}
}
공용 함수 SetAssign($souc, $info) {
if (!empty($this->html)) {
$this->html = str_ireplace ($souc, self::FmtTplHtml($info), $this->html);
} else {
exit('模板文件内容为空!');
}
}
비공개 함수 SetTplTags() {
$this->SetPanelTags(); $this->SetTrunkTags(); $this->RegHatchVars();
}
비공개 함수 SetPanelTags() {
$rule = $this->bTag.'([^'.$this->eFlag.'] )/'.$this-> e플래그;
preg_match_all('/'.$rule.'/ism', $this->html, $out_matches);
$this->TransTag($out_matches, '패널'); unset($out_matches);
}
비공개 함수 SetTrunkTags() {
$rule = $this->bTag.'(w )s*([^'.$this->eFlag.']*?)' .$this->eFlag.
'((?:(?!'.$this->bTag.')[Ss]*?|(?R))*)'.$this->eTag.'\1s*'. $this->eFlag;
preg_match_all('/'.$rule.'/ism', $this->html, $out_matches);
$this->TransTag($out_matches, '트렁크'); unset($out_matches);
}
비공개 함수 TransTag($result, $type) {
if (!empty($result[0])) {
switch ($type) {
case 'panel' : {
for ($i = 0; $i $strTag = 폭발(' ', $result[1][$i], 2);
if (strpos($strTag[0], '.')) {
$itemArg =Explode('.', $result[1][$i], 2);
$callFunc = 태그::$prefix.ucfirst($itemArg[0]);
if (method_exists('Tags', $callFunc)) {
$html = Tags::$callFunc(chop($itemArg[1]));
if ($html !== false) {
$this->html = str_ireplace($result[0][$i], $html, $this->html);
}
}
} else {
$rule = '^([^s] )s*([Ss] )$';
preg_match_all('/'.$rule.'/is', Trim($result[1][$i]), $tmp_matches);
$callFunc = 태그::$prefix.ucfirst($tmp_matches[1][0]);
if (method_exists('Tags', $callFunc)) {
$html = Tags::$callFunc($tmp_matches[2][0]);
if ($html !== false) {
$this->html = str_ireplace($result[0][$i], $html, $this->html);
}
} unset($tmp_matches);
}
} 휴식;
}
case '트렁크': {
for ($i = 0; $i < count($result[0]); $i ) {
$callFunc = 태그::$ prefix.ucfirst($result[1][$i]);
if (method_exists('Tags', $callFunc)) {
$html = Tags::$callFunc($result[2][$i], $result[3][$i]);
$this->html = str_ireplace($result[0][$i], $html, $this->html);
}
} 휴식;
}
기본값: 중단;
}
} else {
false를 반환합니다.
}
}
비공개 함수 RegHatchVars() {
$this->SetPanelTags();
}
함수 __destruct() {}
}
?>


标签解析类:(目前暂时提供data、list两种标签的解析,说明思路)

复代码 代码아래:


/*
* 클래스: 标签解析类
* 작성자: 51JS.COM-ZMM
* 날짜: 2011.3.2
* 이메일: 304924248@qq.com
* 블로그: http://www.cnblogs.com/cnzmm/
*/
class 태그 {
static private $attrs=null;
정적 공개 $file, $vars, $rule, $prefix='TAG_';
정적 공개 함수 TAG_Syntax($html, $that) {
$rule = $that->bTag.'ifs ([^'.$that->eFlag.'] )s*'.$ that->eFlag;
$html = preg_replace('/'.$rule.'/ism', '', $html);
$rule = $that->bTag.'elseifs ([^'.$that->eFlag.'] )s*'.$that->eFlag;
$html = preg_replace('/'.$rule.'/ism', '', $html);
$rule = $that->bTag.'elses*'.$that->eFlag;
$html = preg_replace('/'.$rule.'/ism', '', $html);
$rule = $that->bTag.'loops (S )s (S )s*'.$that->eFlag;
$html = preg_replace('/'.$rule.'/ism', '', $html);
$rule = $that->bTag.'loops (S )s (S )s (S )s*'.$that->eFlag;
$html = preg_replace('/'.$rule.'/ism', ' \3) { ?>', $html);
$rule = $that->eTag.'(if|loop)s*'.$that->eFlag;
$html = preg_replace('/'.$rule.'/ism', '', $html);
$rule = $that->bTag.'phps*'.$that->eFlag.'((?:(?!'.
$that->bTag.')[Ss] *?|(?R))*)'.$that->eTag.'phps*'.$that->eFlag;
$html = preg_replace('/'.$rule.'/ism', '', $html);
return self::TAG_Execute($html);
}
정적 공개 함수 TAG_List($attr, $html) {
if (!empty($html)) {
if (self::TAG_HaveTag($html)) {
return self::TAG_DealTag($attr, $html, true);
} else {
return self::TAG_GetData($attr, $html, true);
}
} else {
exit('标签{list}的内容为空!');
}
}
정적 공개 함수 TAG_Data($attr, $html) {
if (!empty($html)) {
if (self::TAG_HaveTag($html)) {
return self::TAG_DealTag($attr, $html, false);
} else {
return self::TAG_GetData($attr, $html, false);
}
} else {
exit('标签{data}的内容为空!');
}
}
정적 공개 함수 TAG_Execute($html) {
ob_clean(); ob_start();
if (!empty(self::$vars)) {
is_array(self::$vars) &&
extract(self::$vars, EXTR_OVERWRITE);
}
$file_inc = WEBSITE_DIRINC.'/buffer/'.
md5(uniqid(rand(), true)).'.php';
if ($fp = fopen($file_inc, 'xb')) {
fwrite($fp, $html);
if (fclose($fp)) {
include($file_inc);
$html = ob_get_contents();
} 설정 해제($fp);
} else {
exit('模板解析文件生成失败!');
} ob_end_clean(); @unlink($file_inc);
$html을 반환합니다.
}
정적 비공개 함수 TAG_HaveTag($html) {
$bool_has = false;
$tpl_ins = 새 템플릿();
self::$rule = $tpl_ins->bTag.'([^'.$tpl_ins->eFlag.'] )/'.$tpl_ins->eFlag;
$bool_has = $bool_has || preg_match('/'.self::$rule.'/ism', $html);
self::$rule = $tpl_ins->bTag.'(w )s*([^'.$tpl_ins->eFlag.']*?)'.$tpl_ins->eFlag.
'((?:(?!'.$tpl_ins->bTag.')[Ss]*?|(?R))*)'.$tpl_ins->eTag.'\1s*'. $tpl_ins->eFlag;
$bool_has = $bool_has || preg_match('/'.self::$rule.'/ism', $html);
설정 해제($tpl_ins);
$bool_has를 반환합니다.
}
정적 비공개 함수 TAG_DealTag($attr, $html, $list) {
preg_match_all('/'.self::$rule.'/ism', $html, $out_matches);
if (!empty($out_matches[0])) {
$child_node = array();
for ($i = 0; $i $child_node[] = $out_matches[3][$i];
$html = str_ireplace($out_matches[3][$i], '{-->>child_node_'.$i.'<<--}', $html);
}
$html = self::TAG_GetData($attr, $html, $list);
for ($i = 0; $i < count($out_matches[0]); $i ) {
$html = str_ireplace('{-->>child_node_'.$i.' <<--}', $child_node[$i], $html);
}
preg_match_all('/'.self::$rule.'/ism', $html, $tmp_matches);
if (!empty($tmp_matches[0])) {
for ($i = 0; $i < count($tmp_matches[0]); $i ) {
$callFunc = self ::$prefix.ucfirst($tmp_matches[1][$i]);
if (method_exists('Tags', $callFunc)) {
$temp = self::$callFunc($tmp_matches[2][$i], $tmp_matches[3][$i]);
$html = str_ireplace($tmp_matches[0][$i], $temp, $html);
}
}
}
unset($tmp_matches);
}
unset($out_matches); $html을 반환합니다.
}
정적 비공개 함수 TAG_GetData($attr, $html, $list=false) {
if (!empty($attr)) {
$attr_ins = new Attbt($attr);
$attr_arr = $attr_ins->attrs;
if (is_array($attr_arr)) {
extract($attr_arr, EXTR_OVERWRITE);
$source = 테이블_이름($source, $column);
$rule = '[필드:s*(w )s*([^]]*?)s*/?]';
preg_match_all('/'.$rule.'/is', $html, $out_matches);
$data_str = '';
$data_ins = 새로운 DataSql();
$attr_where = $attr_order = '';
if (!empty($where)) {
$where = str_replace(',', ' and ', $where);
$attr_where = '어디'. $어디서;
}
if (!empty($order)) {
$attr_order = '주문 기준'.$order;
} else {
$fed_name = '';
$fed_ins = $data_ins->GetFedNeedle($source);
$fed_cnt = $data_ins->GetFedCount($fed_ins);
for ($i = 0; $i $fed_flag = $data_ins->GetFedFlag($fed_ins, $i);
if (preg_match('/auto_increment/ism', $fed_flag)) {
$fed_name = $data_ins->GetFedName($fed_ins, $i);
휴식;
}
}
if (!empty($fed_name))
$attr_order = ''.$fed_name으로 주문하세요.' 설명';
}
if ($list == true) {
if (empty($source) &&empty($sql)) {
exit('标签{list}必须指정source属性!' );
}
$attr_rows = $attr_page = '';
if ($rows > 0) {
$attr_rows = ' 제한 0,'.$rows;
}
if (!empty($sql)) {
$data_sql = $sql;
} else {
$data_sql = '`'.$source.'`에서 *를 선택하세요.
$attr_where.$attr_order.$attr_rows;
}
if ($pages=='true' && !empty($size)) {
$data_num = $data_ins->GetRecNum($data_sql);
$page_cnt = ceil($data_num / $size);
글로벌 $page;
if (!isset($page) || $page < 1) $page = 1;
if ($page > $page_cnt) $page = $page_cnt;
$data_sql = '``.$source.'`'.$attr_where에서 *를 선택하세요.
$attr_order.' 제한 '.($page-1) * $size.','.$size;
$GLOBALS['cfg_page_curr'] = $페이지;
$GLOBALS['cfg_page_prev'] = $페이지 - 1;
$GLOBALS['cfg_page_next'] = $페이지 1;
$GLOBALS['cfg_page_nums'] = $page_cnt;
if (function_exists('list_pagelink')) {
$GLOBALS['cfg_page_list'] = list_pagelink($page, $page_cnt, 2);
}
}
$data_idx = 0;
$data_ret = $data_ins->SqlCmdExec($data_sql);
while ($row = $data_ins->GetRecArr($data_ret)) {
if ($skip > 0 && !empty($flag)) {
$data_idx != 0 &&
$data_idx % $skip == 0 &&
$data_str .= $flag;
}
$data_tmp = $html;
$data_tmp = str_ireplace('@idx', $data_idx, $data_tmp);
for ($i = 0; $i $data_tmp = str_ireplace($out_matches[0][$i],
$row [$out_matches[1][$i]], $data_tmp);
}
$data_str .= $data_tmp; $data_idx ;
}
} else {
if (empty($source)) {
exit('标签{data}必须指정source属性!');
}
$data_sql = '``.$source에서 *를 선택하세요.
'`'.$attr_where.$attr_order;
$row = $data_ins->GetOneRec($data_sql);
if (is_array($row)) {
$data_tmp = $html;
for ($i = 0; $i $data_val = $row[$out_matches[1][$i]];
if (empty($out_matches[2][$i])) {
$data_tmp = str_ireplace($out_matches[0][$i], $data_val, $data_tmp);
} else {
$attr_str = $out_matches[2][$i];
$attr_ins = 새 속성($attr_str);
$func_txt = $attr_ins->attrs['function'];
if (!empty($func_txt)) {
$func_tmp = 폭발('(', $func_txt);
if (function_exists($func_tmp[0])) {
eval(' $func_ret ='.str_ireplace('@me',
'''.$data_val.''', $func_txt))
$data_tmp = str_ireplace($out_matches[0][$i], $ func_ret, $data_tmp);
} else {
exit('调用了不存재적函数!')
}
} else {
exit('标签设置属无效!' );
}
}
$data_str .= $data_tmp
}
}
unset($data_ins)
return $data_str; >} else {
exit('标签设置属性无效!');
}
} else {
exit('没有设置标签属性!')
}
}
정적 공용 함수 __callStatic($name, $args) {
exit('标签{'.$name.'}不存재!')
}
}
?>


以上就介绍了mvc模式 PHP中MVC模式的模板引擎开发经验分享, 包括了mvc模式方了, 希望对PHP教程兴趣的朋友有所帮助。

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