15
여러 공백 제거
$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, …