uchome 不用每次都更新缓存的方法

打开source/function_common.php文件,找到:

if(!file_exists($objfile)) {

include_once(S_ROOT.’./source/function_template.php’);
parse_template($tpl);

}

修改成:

//if(!file_exists($objfile)) {

include_once(S_ROOT.’./source/function_template.php’);

parse_template($tpl);
//}

你可能感兴趣的:(PHP,uchome)