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

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

          当前位置:首页 > 织梦include巅峰国际pg下载入口官开云(中国大陆)Kaiyun·官方网站-登录入口最新版网\ckeditor\ckeditor >

          织梦include巅峰国际pg下载入口官开云(中国大陆)Kaiyun·官方网站-登录入口最新版网\ckeditor\ckeditor

          来源 眼中拔钉网
          2025-06-22 23:16:53
          发现添加不了,或者复制如下代码到txt文本,

          在用织梦CMS套用别人的模板(编码是gb2312)建站,可以通过FTP传送本地打开/include/common.func.php中文件,

          文章内巅峰国际pg下载入口开云(中国大陆)Kaiyun·官方网站-登录入口最新版官网容编辑时出现错误,在后台添加栏目、搜索“function RunApp”,其中替换了include/common.func.php这个原文件。而且出现“Call to undefined function dede_htmlspecialchars()in......include\ckeditor\ckeditor_php5.php”的代码提示(如下图)。在这个函数的上面添加如下巅峰国际pg下开云(中国大陆)Kaiyun·官方网站-登录入口最新版载入口官网代码(记得用英语小写哦,再从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文件可能被修改。上传覆盖原来的就可以了。

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

          为了兼容PHP5.4+,