Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am try to write a php script that echo's a string, it doesn't recognize the end of line function in there.

e.g

echo "thank you \n "
echo "for coming over"

The \n is ignored and it prints the whole line as thank you for coming over.

Got the same result for the following to:

echo "thank you ".PHP_EOL.;
echo "for coming over".PHP_EOL.;
share|improve this question
2  
Try inserting <br>. – Tomalak Jun 29 '11 at 11:36
Look at your source code, you'll see that the new line has been inserted. It's just that the browser ignores new lines. – Vache Jun 29 '11 at 11:37
possible duplicate of When do I use the PHP constant "PHP_EOL"? – Positive Jun 29 '11 at 11:38

4 Answers

If you are doing this in a browser, replace \n with <br />. The file line breaks are not rendered in an HTML page, unless specified via CSS or if they're enclosed in certain tags. You could also optionally change the file type to text/plain, but I don't think that would be desired.

share|improve this answer

There are different ways to solve that:

Using Pre-formatted text

echo '<pre>'; // pre-formatted text, \n should work
echo "thank you \n ";
echo "for coming over";
echo '</pre>';

Changing the content type

header('Content-Type: text/plain');
echo "thank you \n ";
echo "for coming over";

You browser will now properly read the output as text.

Using the HTML break element

echo "thank you <br>\n ";
echo "for coming over";

So output always depends on what you want to output. Is it text? Is it HTML? Is it some text within HTML? Depending on what you need you should take care on the format and formatting.

share|improve this answer
I just fixed your code (missing ; and </pre>), hope it's okay. – middus Jul 22 '11 at 17:55
sure, thanks for taking care! – hakre Jul 22 '11 at 18:19

Check the source of the web page from browser, there will be a new line. Since in html, whitespaces like newline, tabs, spaces are ignored, you can't see it in the browser. You need to user <br /> or &nbsp; etc., to print what you want.

share|improve this answer

If you want to print text containing eol's in html, give nl2br a shot

$str = "thank you \n ";
$str .= "for coming over";
nl2br($str);

It will add HTML line breaks before all eols.

share|improve this answer

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.