我试图从字符串中取出脏话并认为我已经完成了,直到这个网站上的某个人向我展示了这个:http ://codepad.org/LMuhFH4g
那么,有什么办法可以让我遍历一个字符串,直到它清除所有脏话。
$a = array( 'duck', 'chit', 'dsshole' );
$str = 'duchitck-you-dssduckhole';
$newString = str_ireplace($a,'',$str);
$newString = str_ireplace('-','',$newString);
$newString = trim($newString);
echo $newString;