PHP过滤指定字符串,过滤换行符
2022-04-26 本文已影响0人
可乐_加冰_
两 / / 之间,为匹配对象。
$str1 = preg_replace(array("/a/", "/b/"), '',$str);//过滤指定字符
$str2 = preg_replace('/\s*/', '', $str);//过滤换行符
两 / / 之间,为匹配对象。
$str1 = preg_replace(array("/a/", "/b/"), '',$str);//过滤指定字符
$str2 = preg_replace('/\s*/', '', $str);//过滤换行符