$text="aaaa bbb ccc"; $text=str_replace(’\n‘,"",$text); $text=str_replace(’\r‘,"",$text); $text=str_replace(’\r\n‘,"",$text); 일반적으로 말하면 위의 코드는 줄바꿈을 바꿀 수 있을 것이다. 하지만 실제로는 안 된다! 답답해서 여러 번 시도해 봤지만 소용이 없었다. 마지막에 이렇게 고쳤어요 $text=str_replace("\n","",$text); $text=str_replace("\r","",$text); $text=str_replace("\r\n","",$text); 모든 것이 OK라니, 알고 보니 따옴표, 따옴표의 문제!! php에서 따옴표가 해석되었기 때문에 따옴표가 홑따옴표보다 효율적이다그 과정에서..