つまり 、指定した文字列値の継続的な出現を単一の文字列値に変更します。すなわち
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);