vote up 4 vote down
star

When is it a good idea to use PHP_EOL? I sometimes see this in code samples of PHP. Does this handle DOS/Mac/Unix endline issues? Most of the PHP I write is for generating HTML, and I use <br/> instead of actual newlines, so haven't used this constant before.

flag
add comment

7 Answers

vote up 4 vote down

Yes, PHP_EOL is ostensibly used to find the newline character in a cross-platform-compatible way, so it handles DOS/Mac/Unix issues.

link|flag
Should it be used as the end-line character when writing a command-line script? – Thomas Owens Sep 24 at 17:37
add comment
vote up 3 vote down

You use PHP_EOL when you want a new line, and you want to be cross-platform.

This could be when you are writing files to the filesystem (logs, exports, other).

You could use it if you want your generated HTML to be readable. So you might follow your
with a PHP_EOL.

You would use it if you where running php as a script from cron and you needed to output something and have it be formated for a screen.

You might use it if you where building up anemail to send that needed some formatting.

link|flag
Fix your formatting - write <br /> instead of plain <br /> so that your HTML doesn't disappear into the interwebs. – Chris Lutz Mar 31 at 2:09
You don't need to use platform-independent newlines when generating HTML. – Rob Apr 21 at 22:00
add comment
vote up 0 vote down

I'm using PHP _EOL when building the message body of my email but the line feeds are not getting through and the entire message body ends up one long line.... Any ideas?

link|flag
If the platform uses line feed (i.e. bare \n) as the newline separator, then this makes sense; RFC 2821 (faqs.org/rfcs/rfc2821.html) dictates that new lines in SMTP email must be denoted with CRLF (i.e. \r\n). – Rob Apr 21 at 22:03
add comment
vote up 0 vote down

The definition of PHP_EOL is that it gives you the newline character of the operating system you're working on.

In practice, you should almost never need this. Consider a few cases:

  • When you are outputting to the web, there really isn't any convention except that you should be consistent. Since most servers are Unixy, you'll want to use a "\n" anyway.

  • If you're outputting to a file, PHP_EOL might seem like a good idea. However, you can get a similar effect by having a literal newline inside your file, and this will help you out if you're trying to run some CRLF formatted files on Unix without clobbering existing newlines (as a guy with a dual-boot system, I can say that I prefer the latter behavior)

PHP_EOL is so ridiculously long that it's really not worth using it.

link|flag
add comment
vote up 0 vote down

Handy with error_log() if you're outputting multiple lines.

I've found a lot of debug statements look weird on my windows install since the developers have assumed unix endings when breaking up strings.

link|flag
add comment
vote up -2 vote down

Use it when you need it. Otherwise don't. :) I can't say that I have ever used it myself.

link|flag
add comment
vote up -2 vote down

I've used it while AJAX'n to get line breaks in js Alerts.

link|flag
It'll decide what character to use based on the server platform, and run that on the client, which is probably not what you want. – Wouter van Nifterick Apr 21 at 22:10
add comment

Your Answer

Get an OpenID
or

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