修改文件:source/function/function_core.php 2506 行附近          修改之前请备份好原文件~!

查找:

  1. function strreplace_strip_split($searchs, $replaces, $str) {
  2.     $searchspace = array('((s*-s*)+)', '((s*,s*)+)', '((s*|s*)+)', '((s* s*)+)', '((s*_s*)+)');
  3.     $replacespace = array('-', ',', '|', ' ', '_');
  4.     return trim(preg_replace($searchspace, $replacespace, str_replace($searchs, $replaces, $str)), ' ,-|_');

替换为:

  1. function strreplace_strip_split($searchs, $replaces, $str) {
  2.     $searchspace = array('(((s)*-(s)*)+)',
    '(((s)*,(s)*)+)', '(((s)*|(s)*)+)', '(((s)* (s)*)+)',
    '(((s)*_(s)*)+)');
  3.     $replacespace = array('$3-$3', '$3,$3', '$3|$3', '$3 $3', '$3_$3');
  4.     return trim(preg_replace($searchspace, $replacespace, str_replace($searchs, $replaces, $str)), ' ,-|_');
  5. }

后台更新缓存~!