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. |
||||
|
|
|
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? |
|||
|
|
|
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. |
||
|
|
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. |
||
|
|
Use it when you need it. Otherwise don't. :) I can't say that I have ever used it myself. |
||
|
|
I've used it while AJAX'n to get line breaks in js Alerts. |
||
|
