$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
, 단지 하나의 공간. 누구든지 그 방법을 말해 줄 수 있습니까?