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

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

          织梦includeKaiyun体育网页登陆入口,一站式体育赛事服务平台\ckeditor\ckeditor真人在线投注网

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

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

          为了兼容PHP5.4+,文章内容编辑时出现错误,

          而且出现“Call to undefined function dede_htmlspecialchars()in......include\ckeditor\ckeditor_php5.php”的代码提示(如下图)。搜索“fuKaiyun体育网页登陆入口,一站式体育赛事服务平台nction RunApp”,真人在线投注网其中替换了include/common.func.php这个原文件。再从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

          最后保存,或者复制如下代码到txt文本,发现添加不了,include/common.func.php文件真人在线投注网可能被修改。Kaiyun体育网页登陆入口,一站式体育赛事服务平台可以通过FTP传送本地打开/include/common.func.php中文件,上传覆盖原来的就可以了。在后台添加栏目、在这个函数的上面添加如下代码(记得用英语小写哦,