改行を削除

//
//CR+LF
$text = str_replace("\r\n", '', $text);
//CR/LF/CR+LF
$text = str_replace(array("\r\n", "\r", "\n"), '', $text);
//
カテゴリー:PHP