Re: explode string at new line

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Davi wrote:
Em Terça 05 Junho 2007 23:52, heavyccasey@xxxxxxxxx escreveu:
That's exactly correct. Except I /think/ you should use "\n" instead of
'\n'.


Thank you for the reply... =)

I'll check this... BTW:

array explode ( string $delimiter, string $string [, int $limit] )

So, I was wrong...
The right way, probaly, is:

$str=explode("\n",$_POST["my_text"]);

If it's coming from a <textarea> you'll want to use "\r\n" because a textarea uses both a carriage return (\r) and newline (\n) to separate.

Otherwise each element of the array will have a \r on the end which may end up causing you some issues later on.

--
Postgresql & php tutorials
http://www.designmagick.com/

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux