shuipfcms模板路径解析问题,求助啊!!!

浏览:1465 发布日期:2013/10/10 分类:求助交流 关键字: shuipfcms 模板解析 模板路径
求助,在thinkphp开发的shuipfcms程序中,出现一个函数可以获取模板的绝对路径,但看不出来是怎么实现的,现贴出代码,求解!!!
/**
* 模板路径
* @param type $templateFile
* @return boolean|string
*/
private function parseTemplateFile($templateFile = '') {
$templateFile = parseTemplateFile($templateFile);
if (false === $templateFile) {
if (APP_DEBUG) {
// 模块不存在 抛出异常
throw_exception("当前页面模板不存在(详细信息已经记录到网站日志)!");
} else {
send_http_status(404);
exit;
}
}
return $templateFile;
}
最佳答案
评论( 相关
后面还有条评论,点击查看>>