|
|
@@ -370,6 +370,9 @@ class Tool {
|
|
|
if (preg_match('/\,/', $text)){
|
|
|
$text = preg_replace('/\,/', '|', $text);
|
|
|
}
|
|
|
+ if (preg_match('/[\x{FF08}-\x{FF09}]/u', $text)){
|
|
|
+ $text = preg_replace('/\,/', '|', $text);
|
|
|
+ }
|
|
|
// 只有是中文时才需要转码
|
|
|
if (!preg_match('/[\x{4e00}-\x{9fa5}]/u', $text)) {
|
|
|
return $text;
|