DedeCms标签tag逗号增加空格的方法 $tagss = explode(,,$tags); 2、在该代码上一行添加: $tags = trim(ereg_replace([,;%\\*\?\r\n\t ]{1,},,,$tags)); 3、然后继续查找: $tags = explode(,,$tag); 4、在该代码上一行添加: $tag = trim(ereg_replace([,;%\\*\?\r\n\t ]{...