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.
|
|
|
||
|
|
|
|
Yes, PHP_EOL is ostensibly used to find the newline character in a cross-platform-compatible way, so it handles DOS/Mac/Unix issues. |
||
|
|
|
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 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. |
||||||
|
|
|
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:
PHP_EOL is so ridiculously long that it's really not worth using it. |
||
|
|
|
|
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? |
||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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". |
|||
|
|
|
|
Use it when you need it. Otherwise don't. :) I can't say that I have ever used it myself. |
||
|
|
