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

9 Answers

vote up 4 vote down check

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 '08 at 17:37
vote up 5 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 <br> 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
2  
You don't need to use platform-independent newlines when generating HTML. – Rob Apr 21 at 22:00
vote up 1 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
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
1  
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
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
vote up 0 vote down

I use the PHP_EOL constant in some command line scripts I had to write. I develop on my local Windows machine and then test on a Linux server box. Using the constant meant I didn't have to worry about using the correct line ending for each of the different platforms.

link|flag
vote up 0 vote down

I am using WebCalendar and found that Mac iCal barfs on importing a generated ics file because the end-of-line is hardcoded in xcal.php as "\r\n". I went in and replaced all occurrences with PHP_EOL and now iCal is happy! I also tested it on Vista and Outlook was able to import the file as well, even though the end of line character is "\n".

link|flag
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

Your Answer

Get an OpenID
or

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