老王吧 发表于 2021-8-22 15:26:23

discuz! X3.4特殊字符乱码解决方案

打开:source\function\function_core.php

$string = str_replace(array('&', '"', '<', '>'), array('&', '"', '<', '>'), $string);

下面加入

if(strpos($string, '&#') !== false) {
                $string = preg_replace('/&((#(\d{3,5}|x{4}));)/', '&\\1', $string);
            }

页: [1]
查看完整版本: discuz! X3.4特殊字符乱码解决方案