Home >Backend Development >PHP Tutorial >discuz! X3.2版本中,哪个是模板文件,哪个是模板解析类文件

discuz! X3.2版本中,哪个是模板文件,哪个是模板解析类文件

WBOY
WBOYOriginal
2016-06-23 13:48:34922browse

一般php项目中,最起码要搞一个模板类,模板解析类,编译文件,缓存文件,还有系统变量文件,
不知discuz!x3.2版中这些东西各在哪些目录中呢?


回复讨论(解决方案)

模板类:\source\class\class_template.php,一般在执行template()方法时调用checktplrefresh()方法(都在\source\function\function_core.php中)里实例化,并执行parse_template编译模版,编译好的模版可在\data\template下查看
缓存:loadcache()方法获取缓存数据,discuz用的是pre_common_syscache表来缓存(mediumblob类型二进制)数据(当然也有文件缓存),$_G里面的数据大多是此表中获取的
系统变量:在discuz后台设置的参数(如:$_G['setting']),是存放在pre_common_setting表中,但是$_G['setting']里面的数据实际却来自于pre_common_syscache表中cname为setting的那条数据,它是在后台-》工具-》更新缓存,点击确定执行更新的时候存放进pre_common_syscache表中的,该表中还有其它系统变量,如:每个用户组的权限设置...

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn