up vote 56 down vote favorite
11
share [g+] share [fb]

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.

link|improve this question

feedback

12 Answers

up vote 56 down vote accepted

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|improve this answer
Should it be used as the end-line character when writing a command-line script? – Thomas Owens Sep 24 '08 at 17:37
1  
There is no sense whatsoever in deploying php project on anything but *nix. Thus - there is no point in using PHP_EOL or DIRECTORY_SEPARATOR..ever. well. ok - maybe only if you do your development not on *nix and then transfer result on *nix. – Stann Jan 19 '11 at 12:11
20  
@Andre Sorry but that is a complete nonsense. Windows is a completely viable alternative for PHP deployment (not only development). IIS even works better with PHP than Apache in my experience. – Richard Knop Jan 27 '11 at 8:02
4  
@Richard Knop: Could you point me to at least one relatively big project that uses PHP language and not *nix as OS? If it works - that alone doesn't make it a good idea to do that. – Stann Jan 27 '11 at 9:07
3  
@Andre: How about anyone that writes apps to be installed, used and deployed by others? Are you suggesting these should all limit their "supported platforms" to *nix? – Cylindric Mar 4 '11 at 10:52
show 3 more comments
feedback

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|improve this answer
3  
Fix your formatting - write <br /> instead of plain <br /> so that your HTML doesn't disappear into the interwebs. – Chris Lutz Mar 31 '09 at 2:09
6  
You don't need to use platform-independent newlines when generating HTML. – Rob Apr 21 '09 at 22:00
2  
@Rob, If older versions of IE gave me a better page-source viewer then windows notepad I might have agreed with you. – Zoredache Jan 23 '10 at 1:18
7  
@Zoredache - the HTML will be generated with newlines appropriate for the platform that PHP is running on, not necessarily appropriate for the platform that you're accessing pages from. – Dominic Rodger Feb 2 '10 at 8:43
4  
PHP_EOL should not be used for separating email headers. According to PHP Mail manual, multiple extra headers should be separated with a CRLF (\r\n). – Halil Özgür Nov 27 '10 at 13:55
show 1 more comment
feedback

From main/php.h of PHP version 5.3.6:

#ifdef PHP_WIN32
#   include "tsrm_win32.h"
#   include "win95nt.h"
#   ifdef PHP_EXPORTS
#       define PHPAPI __declspec(dllexport)
#   else
#       define PHPAPI __declspec(dllimport)
#   endif
#   define PHP_DIR_SEPARATOR '\\'
#   define PHP_EOL "\r\n"
#else
#   if defined(__GNUC__) && __GNUC__ >= 4
#       define PHPAPI __attribute__ ((visibility("default")))
#   else
#       define PHPAPI
#   endif

#define THREAD_LS
#define PHP_DIR_SEPARATOR '/'
#if defined(__MacOSX__)
#define PHP_EOL "\r"
#else 
#define PHP_EOL "\n"
#endif
#endif

As you can see PHP_EOL can be "\r\n" (on Windows servers), "\r" (on MacOSX servers) or "\n" (on anything else).

As others already told you, you can use PHP_EOL in any kind of output (where these values are valid - like: HTML, XML, logs...) if you want unified newlines (and you should want this in my opinion).

I just wanted to show the possibles values of PHP_EOL backed by the PHP sources since it hasn't been shown here yet...

link|improve this answer
Wow. The PHP developers are just wrong about this. As the Wikipedia link you give mentions, Mac OS 9 and before used "\r", but not OS X, which uses "\n". Someone should file a bug report... – imgx64 2 days ago
@imgx64 Yeah maybe, but honestly did you ever saw a production MAC server? – AlexV 4 hours ago
feedback

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|improve this answer
7  
-1 for "PHP_EOL is so ridiculously long". It's not a valid argument. – Török Gábor Oct 23 '10 at 11:52
1  
I completely agree with you. There is no sense whatsoever in deploying php on anything but *nix. Thus - there is no point in using PHP_EOL or DIRECTORY_SEPARATOR. – Stann Jan 19 '11 at 12:10
feedback

There is one obvious place where it might be useful: when you are writing code that predominantly uses single quote strings. Its arguable as to whether:

echo 'A $variable_literal that I have'.PHP_EOL.'looks better than'.PHP_EOL;  
echo 'this other $one'."\n";

The art of it is to be consistent. The problem with mix and matching '' and "" is that when you get long strings, you don't really want to have to go hunting for what type of quote you used.

As with all things in life, it depends on the context.

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

I prefer to use \n\r. Also I am on a windows system and \n works just fine in my experience.

Since PHP_EOL does not work with regular expressions, and these are the most useful way of dealing with text, then I really never used it or needed to.

link|improve this answer
4  
Beware with the newline char order, it should be \r\n (CR+LF): en.wikipedia.org/wiki/Newline – azkotoki Feb 9 '11 at 10:11
feedback

I found PHP_EOL very useful while file handling specially if you are writing some content into a file to move into the new line.

For example, you have a long string that you want to break into the multiple lines while writing into plain file. Using \n\r might not work so simply put PHP_EOL into your script and the result is awesome.

Check out this simple example below:

<?php

$output = 'This is line 1' . PHP_EOL .
          'This is line 2' . PHP_EOL .
          'This is line 3';

$file = "filename.txt";

if (is_writable($file)) {
    // In our example we're opening $file in append mode.
    // The file pointer is at the bottom of the file hence
    // that's where $output will go when we fwrite() it.
    if (!$handle = fopen($file, 'a')) {
         echo "Cannot open file ($file)";
         exit;
    }
    // Write $output to our opened file.
    if (fwrite($handle, $output) === FALSE) {
        echo "Cannot write to file ($file)";
        exit;
    }
    echo "Success, content ($output) wrote to file ($file)";
    fclose($handle);
} else {
    echo "The file $file is not writable";
}

?>
link|improve this answer
1  
\n\r will never work as the sequence is meant to be \r\n </pedantry> – frak Nov 26 '10 at 12:04
feedback

DOS/Windows standard "newline" is CRLF (= \r\n) and not LFCR (\n\r). If we put the latter, it's likely to produce some unexpected (well, in fact, kind of extected! :D) behaviors.

Nowadays almost all (well written) programs accepts the UNIX standard LF (\n) for newline code, evn mail sender daemons (RFC sets CRLF as newline for headers and mesage body).

link|improve this answer
feedback

When jumi (joomla plugin for PHP) compiles your code for some reason it removes all backslashes from your code. Such that something like $csv_output .= "\n"; becomes $csv_output .= "n";

Very annoying bug!

Use PHP_EOL instead to get the result you were after.

link|improve this answer
i would really REALLY hope this is a configuration issue you haven't found yet. i havent used joomla, but what an awful behavior if thats really how it works! – jon_darkstar Dec 6 '10 at 21:52
feedback

Your Answer

 
or
required, but never shown

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