In this special case you would even use 'file' to read the content
of the file into an array and use 'implode' to replace every \n with
<br>

$content = implode( "<br>" , file ( './my_file.txt' ) );

 -- red

Brent Baisley wrote:
Normally, I would say str_replace(), but for converting "\n" to "<br>", use the nl2br() function.

On May 24, 2004, at 4:28 PM, GodFoca wrote:

What's the best way of replacing every ocurrence of a substring in a LARGE
string by another (longer) substring?
Specifically, I have read the contents of a file into a tring with fread,
and now I want to replace all "\n" with "<br>"


Thanks in advance
Nicolas Sanguinetti

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to