Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string, with line breaks in my database.

I want to put that string in an array, and for every new line, jump one index place in the array.

If the string is:

"My text1(here is a line break)My text2(here is a line break)My text3"

The result I want is this:

array[0] = "My text1"

array[1] = "My text2"

array[2] = "My text3

share|improve this question
I don't know PHP but there is usually a function called "split" for strings. It works like this: array = split(string, "\n") – ssg Sep 27 '09 at 12:30
I recommend this answer by David below: stackoverflow.com/a/11165332/64004 – gahooa Oct 22 '12 at 16:01

8 Answers

up vote 56 down vote accepted

You can use the explode function, using "\n" as separator :

$your_array = explode("\n", $your_string_from_db);

For instance, if you have this piece of code :

$str = "My text1\nMy text2\nMy text3";
$arr = explode("\n", $str);
var_dump($arr);

You'd get this output :

array
  0 => string 'My text1' (length=8)
  1 => string 'My text2' (length=8)
  2 => string 'My text3' (length=8)


Note that you have to use a double-quoted string, so \n is actually interpreted as a line-break.
(see that manual page for more details)

share|improve this answer
Although it's simple, you explained it perfectly. – Daniel S Sep 27 '09 at 14:50
6  
Instead of \n you can use the predefined constant PHP_EOL. – Tim Jul 19 '12 at 14:58
5  
Everyone please be careful with this solution, as it does not work on all newlines. I've had the most success with David's answer – Maurice Aug 29 '12 at 7:31

A line break is defined differently on different platforms, \r\n, \r or \n.

Using RegExp to split the string you can match all three with \R

So for your problem:

$array = preg_split ('/$\R?^/m', $string);

That would match line breaks on Windows, Mac and Linux!

share|improve this answer
2  
A smarter choice, thanks! – 4h34d Dec 16 '11 at 21:48
1  
I used this as well instead of the accepted answer and any other answers on this thread. Just leaving this comment as an informative. – Seth Jeremi Malaki Jun 1 '12 at 12:55
you are a legend – Tommy Arnold Aug 24 '12 at 23:38
Actually, this did not work for me. Sometimes newlines where still present in the array keys. – Maurice Aug 29 '12 at 7:29
show 1 more comment

I've always used this with great success:

$array = preg_split("/\r\n|\n|\r/", $string);

(updated with the final \r, thanks @LobsterMan)

share|improve this answer
2  
This worked for me the best. – Maurice Aug 29 '12 at 7:29

PHP already knows the current system's newline character(s). Just use the EOL constant.

explode(PHP_EOL,$string)
share|improve this answer
2  
Yes, but one can edit a file or as in this example a db entry in Windows then use it on a Linux system, for example. I think a general approach would suit better. – Cranio Dec 7 '12 at 11:03

David: Great direction, but you missed \r. this worked for me:

$array = preg_split("/(\r\n|\n|\r)/", $string);
share|improve this answer
Thanks! That's a good point. I added it to my code – David Aug 30 '12 at 14:37
explode("\n", $str);

The " (instead of ') is quite important as otherwise, the line break wouln't get interpreted.

share|improve this answer
<anti-answer>

As other answers have specified, be sure to use explode rather than split because as of PHP 5.3.0 split is deprecated. i.e. the following is NOT the way you want to do it:

$your_array = split(chr(10), $your_string);

LF = "\n" = chr(10), CR = "\r" = chr(13)

</anti-answer>
share|improve this answer

For anyone trying to display cronjobs in a crontab and getting frustrated on how to separate each line, use explode:

$output = shell_exec('crontab -l');
$cron_array = explode(chr(10),$output);

using '\n' doesnt seem to work but chr(10) works nicely :D

hope this saves some one some headaches.

share|improve this answer
Hi Jeff, welcome to SO. You should rewrite this as a question and answer, rather than an answer on somebody else's question. This is a Q&A site, not a general forum. Have a look at the FAQ - stackoverflow.com/faq – Ben Scott Jul 13 '11 at 7:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.