Tagged Questions

56
votes
12answers
46k views

When do I use the PHP constant “PHP_EOL”?

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/> ...
10
votes
3answers
17k views

PHP Echo Line Breaks

I'm pretty sure this has already been answered, but for the life of me I could not find the question or answer after browsing/searching StackOverflow for the last 20 minutes. Anyway, the question: ...
1
vote
1answer
110 views

What is the official eol value that's sent by browsers (in textarea, for example)

In PHP "\n" acts as the eol for the OS you're on so that's unreliable. Also, I understand that PHP has constants for EOL, that's not really what I'm asking, I want to know what EOL value I can ...
1
vote
2answers
3k views

Setting encoding, newline, linebreaks, end-of-line (EOL) in PHP

For example, when I create a new file: $message = "Hello!"; $fh = fopen(index.html, 'w'); fwrite($fh, $message); fclose($fh); How can I set it's encoding(utf-8 or shift-jis or euc-jp) and ...
0
votes
1answer
134 views

Notepad++ put all my PHP into one line

I edited a bunch of PHP files (with N++) on Computer A, uploaded it to a server, downloaded it to computer B (with N++), and they lost all their line breaks. I've done this routine many times and ...
0
votes
1answer
214 views

Sending cross platform emails with PHP, how to handle line breaks?

When creating a script to send emails using the PHP mail() function I'm coming across issues with new lines. PHP on Unix systems expect headers to be separated with a LF character, despite what the ...
-1
votes
1answer
46 views

PHP_EOL doesn't work on XAMPP [closed]

Possible Duplicate: Why does PHP echo'd text lose it's formatting? I got strange problem. Let's say I got code like this: <?php class Bar { private $foo; function ...