简而言之 ,使用单个字符串值更改我们指定的字符串值的连续出现。IE
hello \t\t\t\t\t world \n\n\n\n\t\t\t
至
hello \t world \n\t
详细地
\n\tExample\n\r\nto \nunderstand\n\r\n the current\n situatuion\t\t\t\t\t.
我想要输出为
Example
to
understand
the current
situation .
以 html 输出
<br /> Example<br />to <br />understand<br /> the current<br /> situation .
我设法得到这个输出
Example
to
understand
the current
situatuion .
使用此代码
$str='\n\tExample\n\r\nto \nunderstand\n\r\n the current\n situatuion\t\t\t\t\t.';
echo str_replace(array('\n', '\r','\t','<br /><br />' ),
array('<br />', '<br />',' ','<br />'),
$str);