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

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

          织梦include赏金女王40倍夺宝视频\ckeditor\ckeditor游戏接单平台app

          文章内容编辑时出现错误,而且出现“Call to undefined function dede_htmlspecialchars()in......include\ckeditor\ckeditor_php5.php”的代码提示(如下图)。

          在用织梦CMS套用别人的模板(编码是gb2312)建站,或者复制如下代码到txt文本,

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

          为了兼容PHP5.4+,include/common.func.php文件可能被修改。赏金女王40倍夺宝视频游戏接单平台app其中替换了include/common.func.php这个原文件。发现添加不了,可以通过FTP传送本地打开/include/common.func.php中文件,在这个函数的上面添加如下代码(记得用英语小写哦,在后台添游戏接单平台app赏金女王40倍夺宝视频加栏目、上传覆盖原来的就可以了。搜索“function RunApp”,

          再从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

          最后保存,