我有多个换行符的字符串。
该字符串:
This is a dummy text. I need
to format
this.
所需的输出:
This is a dummy text. I need to format this.
我使用的是这样的:
$replacer = array("\r\n", "\n", "\r", "\t", " ");
$string = str_replace($replacer, "", $string);
但它不工作根据需要/要求。 有些话没有它们之间的间隔。
其实我需要将字符串转换所有单空格隔开的话。