老師,不好意思,亂搞被我搞出來了,改function.php
//轉換編碼 (_CHARSET在後面時,$OS2Web為true,預設)
function change_charset($str, $OS2Web = true)
{
global $xoopsModuleConfig;
if ('Auto' !== $xoopsModuleConfig['os_charset'] and '' != $xoopsModuleConfig['os_charset']) {
$os_charset = $xoopsModuleConfig['os_charset'];
} else {
$os_charset = (PATH_SEPARATOR === ':') ? 'Big5' : 'UTF-8';
}
if (_CHARSET != $os_charset) {
$str = $OS2Web ? mb_convert_encoding($str, $os_charset,_CHARSET ) : mb_convert_encoding($str, _CHARSET, $os_charset);
}
if ($OS2Web and 'UTF-8' === $os_charset and _CHARSET === 'Big5') {
$str = stripslashes($str);
}
return $str;
}