1. 정규식을 통한 제거
1 | $text = preg_replace('/\r\n|\r|\n/','',$text); | cs |
2. 문자열 함수사용으로 제거
1 | $text = str_replace(array("\r\n","\r","\n"),'',$text); | cs |
또는
1 | $text = strtr($text,array("\r\n"=>'',"\r"=>'',"\n"=>'')); | cs |
'php' 카테고리의 다른 글
[PHP] string에서 단어가 포함되어있는지 찾는 법 (0) | 2018.04.19 |
---|---|
[php] php 에러 출력하기 (0) | 2016.11.10 |
[php] Multi dimensional array 에서 array_search() 사용하기 (0) | 2016.11.10 |
[php] php에서 startWith, endWith 사용하기 (0) | 2016.11.10 |