Coding standards - PHP File Formatting - Line termination.php 336 Bytes
Newer Older
hansbrix's avatar
hansbrix committed
1 2 3 4 5 6 7 8 9 10 11

* Line termination is the standard way for Unix text files. Lines must end only with a linefeed (LF). Linefeeds are represented as ordinal 10, or hexadecimal 0x0A.


* Do not use carriage returns (CR) like Macintosh computers (0x0D).


* Do not use the carriage return/linefeed combination (CRLF) as Windows computers (0x0D, 0x0A).