首页 > CMS > 织梦DEDE > 正文

解决织梦5.7,为了兼容php5.4+问题

2024-07-12 09:12:28
字体:
来源:转载
供稿:网友

2015年6月18日更新的新版本的织梦5.7,为了兼容php5.4+,修改了common.func.php,可能有些模板也改动过这个文件,这样会导致在安装模板时,common.fuc.php文件被覆盖,从而在发布文章时,编辑框的位置出现“Call to undefined function dede_htmlspecialchars()”这样的错误提示。

解决办法如下:

打开common.func.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);  }  

武林网觉得还是升级为php6.5更兼容

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表