% cat text
ligne 1
ligne 2
ligne 3
% cat text.php
<?php
function l() {
echo "\n -------------- \n";
}
$text = file_get_contents('text');
echo $text;
l();
$textbr = nl2br($text);
echo $textbr;
l();
echo str_replace(array("\r", "\n"), '', $text);
l();
echo str_replace("<br />\n", '', $textbr);
l();
% php5 text.php
ligne 1
ligne 2
ligne 3
--------------
ligne 1<br />
ligne 2<br />
ligne 3<br />
--------------
ligne 1ligne 2ligne 3
--------------
ligne 1ligne 2ligne 3
--------------