function nl2brr($text)
{
return str_replace(array(“\r\n”, “\n”, “\r”), “
“, $text);
}
を作成し、置換する。
http://q.hatena.ne.jp/1168260277
php テキストフィールドの改行置換
![](https://midilin.cloudfree.jp/midilin/diary/wp-content/themes/cocoon-master/screenshot.jpg)
function nl2brr($text)
{
return str_replace(array(“\r\n”, “\n”, “\r”), “
“, $text);
}
を作成し、置換する。
http://q.hatena.ne.jp/1168260277