【PHP】nl2br()おさらい。

自分用。

まず関数の定義。

string nl2br(string $string [, bool $is_xhtml = true])

第2引数に「true」を指定するか省略した場合、「<br />」が出力され、「false」を指定した場合、「<br>」になる。

$string = "This \n\ris \r\nmy \rfavorite \nfruit.";

echo nl2br($string);
↓
This <br />
is <br />
my <br />
favorite <br />
fruit.

echo nl2br($string, false);
↓
This <br>
is <br>
my <br>
favorite <br>
fruit.

細かいけど、SEO的な観点からすると気をつけたいところ。