「PHP」nl2br関数のサンプル
説明
nl2br ( string $string [, bool $is_xhtml = TRUE ] ) : string
string に含まれるすべての改行文字 (\r\n、 \n\r、\n および \r) の前に <br /> あるいは <br> を挿入して返します。
使用例
<?php $str = "This\r\nis\n\ra\ntest\r"; echo nl2br($str); echo "************"; echo nl2br("Welcome\r\nhaha1223", false); ?>
結果
This
is
a
test
************
Welcome
haha1223