<code id='D7BFD50007'></code><style id='D7BFD50007'></style>
    • <acronym id='D7BFD50007'></acronym>
      <center id='D7BFD50007'><center id='D7BFD50007'><tfoot id='D7BFD50007'></tfoot></center><abbr id='D7BFD50007'><dir id='D7BFD50007'><tfoot id='D7BFD50007'></tfoot><noframes id='D7BFD50007'>

    • <optgroup id='D7BFD50007'><strike id='D7BFD50007'><sup id='D7BFD50007'></sup></strike><code id='D7BFD50007'></code></optgroup>
        1. <b id='D7BFD50007'><label id='D7BFD50007'><select id='D7BFD50007'><dt id='D7BFD50007'><span id='D7BFD50007'></span></dt></select></label></b><u id='D7BFD50007'></u>
          <i id='D7BFD50007'><strike id='D7BFD50007'><tt id='D7BFD50007'><pre id='D7BFD50007'></pre></tt></strike></i>

          当前位置:首页 > 织梦include开元体育app官方版最新下在线体彩投注载网站\ckeditor\ckeditor >

          织梦include开元体育app官方版最新下在线体彩投注载网站\ckeditor\ckeditor

          来源 不识一丁网
          2025-06-20 09:37:54
          可以通过FTP传送本地打开/include/common.func.php中文件,

          织梦include\ckeditor\ckeditor_php5.php解决办法-图片1

          为了兼容PHP5.4+,

          在用织梦CMS套用别人的模板(编码是gb2312)建站,

          文章内容编辑时出现错误,在后开元体育在线体彩投注app官方版最新下载网站台添加栏目、而且出现“Call to undefined function dede_htmlspecialchars()in......include\ckeditor\ckeditor_php5.php”的代码提示(如下图)。在这个函数的上面添加如下代码(记得用英语小写哦,上传覆盖原来的就可以了。发现添加不了,搜索“f在线体彩投注rong>开元体育app官方版最新下载网站unction RunApp”,include/common.func.php文件可能被修改。或者复制如下代码到txt文本,再从txt文本复制到添加的地方)即可:

          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);}

          织梦include\ckeditor\ckeditor_php5.php解决办法-图片2

          最后保存,其中替换了include/common.func.php这个原文件。