When do I use the PHP constant "PHP_EOL"? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T18:25:31Z http://stackoverflow.com/feeds/question/128560 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-phpeol 4 When do I use the PHP constant "PHP_EOL"? Gorgapor 2008-09-24T17:34:39Z 2009-11-06T18:52:53Z <p>When is it a good idea to use <a href="http://us3.php.net/manual/en/reserved.constants.php" rel="nofollow"><code>PHP_EOL</code></a>? 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 <code>&lt;br/&gt;</code> instead of actual newlines, so haven't used this constant before.</p> http://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-phpeol/128564#128564 5 Answer by Adam Bellaire for When do I use the PHP constant "PHP_EOL"? Adam Bellaire 2008-09-24T17:35:53Z 2008-09-24T17:35:53Z <p>Yes, PHP_EOL is ostensibly used to find the newline character in a cross-platform-compatible way, so it handles DOS/Mac/Unix issues.</p> http://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-phpeol/129370#129370 5 Answer by Zoredache for When do I use the PHP constant "PHP_EOL"? Zoredache 2008-09-24T19:35:52Z 2009-08-10T13:44:01Z <p>You use PHP_EOL when you want a new line, and you want to be cross-platform.</p> <p>This could be when you are writing files to the filesystem (logs, exports, other). </p> <p>You could use it if you want your generated HTML to be readable. So you might follow your <code>&lt;br&gt;</code> with a PHP_EOL.</p> <p>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.</p> <p>You might use it if you where building up anemail to send that needed some formatting.</p> http://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-phpeol/699754#699754 0 Answer by Dave for When do I use the PHP constant "PHP_EOL"? Dave 2009-03-31T01:59:59Z 2009-03-31T02:57:32Z <p>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?</p> http://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-phpeol/699863#699863 -2 Answer by DGM for When do I use the PHP constant "PHP_EOL"? DGM 2009-03-31T03:03:33Z 2009-03-31T03:03:33Z <p>Use it when you need it. Otherwise don't. :) I can't say that I have ever used it myself.</p> http://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-phpeol/774847#774847 1 Answer by Ambush Commander for When do I use the PHP constant "PHP_EOL"? Ambush Commander 2009-04-21T22:06:16Z 2009-04-21T22:06:16Z <p>The definition of PHP_EOL is that it gives you the newline character of the operating system you're working on.</p> <p>In practice, you should almost never need this. Consider a few cases:</p> <ul> <li><p>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.</p></li> <li><p>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)</p></li> </ul> <p>PHP_EOL is so ridiculously long that it's really not worth using it.</p> http://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-phpeol/1026921#1026921 0 Answer by Gavin Gilmour for When do I use the PHP constant "PHP_EOL"? Gavin Gilmour 2009-06-22T12:25:22Z 2009-06-22T12:25:22Z <p>Handy with error_log() if you're outputting multiple lines.</p> <p>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.</p> http://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-phpeol/1394507#1394507 0 Answer by chrismacp for When do I use the PHP constant "PHP_EOL"? chrismacp 2009-09-08T15:01:38Z 2009-09-08T15:01:38Z <p>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.</p> http://stackoverflow.com/questions/128560/when-do-i-use-the-php-constant-phpeol/1689400#1689400 0 Answer by Lex for When do I use the PHP constant "PHP_EOL"? Lex 2009-11-06T18:24:40Z 2009-11-06T18:52:53Z <p>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".</p>