While reading the PHP manual on the section about, "strings" in "variable parsing" I came across a constant:
PHP_EOL
i googled it and came up with this from the manualenter link description here
"PHP_EOL (string) The correct 'End Of Line' symbol for this platform. Available since PHP 4.3.10 and PHP 5.0.2"
Doesn't really say how to use it or much of anything. What does it mean by: "The correct 'End Of Line' symbol for this platform."
when I used it in:
var_dump(PHP_EOL);
the result was:
string(1) " "
is PHP_EOL the same as \n?