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]