织梦cms处理Call to undefined function dede_htmlspecialchars(
织梦cms处理Call to undefined function dede_htmlspecialchars()成绩?2015年6月18日更新的新版本的织梦5.7,为了兼容php5.4+,修正了common.fuc.php,能够有些模板也窜改过那个文件,那样会招致正在安拆模板时,common.fuc.php文件被笼盖,从而正在公布文章时,编纂框的位置呈现“Call to undefined function dede_htmlspecialchars()”那样的毛病提醒。
处理法子以下:
翻开common.fuc.php,搜刮“function RunApp”,正在那个函数的上里增加织梦新版本新删的函数:dede_htmlspecialchars
function dede_htmlspecialchars($str) {
global $cfg_soft_lang;
if (version_compare(PHP_VERSION, ‘5.4.0’, ‘<‘)) return htmlspecialchars($str);
if ($cfg_soft_lang==’gb2312′) return htmlspecialchars($str,ENT_COMPAT,’ISO-8859-1′);
else return htmlspecialchars($str);
}
相关信息
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|