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. |
|||||||||||||||||||||
|
|
From
As you can see As others already told you, you can use I just wanted to show the possibles values of |
|||||||||||
|
|
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 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:
|
|||||
|
|
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:
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. |
|||
|
|
|
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 expected! :D) behaviors. Nowadays almost all (well written) programs accept the UNIX standard LF (\n) for newline code, even mail sender daemons (RFC sets CRLF as newline for headers and message body). |
||||
|
|
You can use this constant when you read or write text files on the server's filesystem. Line endings do not matter in most cases as most software are capable of handling text files regardless of their origin. You ought to be consistent with your code. If line endings matter, explicitly specify the line endings instead of using the constant. For example:
|
||||
|
|
|
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". |
||||
|
|
|
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. |
|||
|
|
|
When jumi (joomla plugin for PHP) compiles your code for some reason it removes all backslashes from your code. Such that something like Very annoying bug! Use PHP_EOL instead to get the result you were after. |
|||||
|
|
You are writing code that predominantly uses single quote strings.
|
|||
|
|
|
I'd like to throw in an answer that addresses "When not to use it" as it hasn't been covered yet and can imagine it being used blindly and no one noticing the there is a problem till later down the line. Some of this contradicts some of the existing answers somewhat. If outputting to a webpage in HTML, particularly text in The reason for this is that while code may work perform well on one sever - which happens to be a Unix-like platform - if deployed on a Windows host (such the Windows Azure platform) then it may alter how pages are displayed in some browsers (specifically Internet Explorer - some versions of which will see both the \n and \r). I'm not sure if this is still an issue since IE6 or not, so it might be fairly moot but seems worth mentioning if it helps people prompt to think about the context. There might be other cases (such as strict XHTML) where suddently outputting As noted by someone already, you wouldn't want to use it when returning HTTP headers - as they should always follow the RFC on any platform. I wouldn't use it for something like delimiters on CSV files (as someone has suggested). The platform the sever is running on shouldn't determine the line endings in generated or consumed files. |
||||
|
|
|
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. |
|||||
|
