15
删除多个空格
我$row['message']从MySQL数据库获取数据,因此需要删除所有空白\n \t,依此类推。 $row['message'] = "This is a Text \n and so on \t Text text."; 应格式化为: $row['message'] = 'This is a Text and so on Text text.'; 我试过了: $ro = preg_replace('/\s\s+/', ' ',$row['message']); echo $ro; 但不会删除\n或\t,而只能删除单个空格。谁能告诉我该怎么做?