标签:col exp pre 空格 \n 表达式 逗号 替换 nbsp
$test=$_POST["test"]; $test= preg_replace("/(\n)|(\s)|(\t)|(\‘)|(‘)|(,)/" ,‘,‘ ,$test); $test = explode("," ,$test);
PHP把空格、换行符、中文逗号等替换成英文逗号的正则表达式
原文地址:https://www.cnblogs.com/5aiQ/p/9834819.html