私は$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
、1つだけのスペースを。誰か私にそれを行う方法を教えてもらえますか?