PHP :: Bug #16521 :: file()
| Bug #16521 | file() - incorrect behavior (line endings ignored) on files with Mac EOLN (CR) | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Submitted: | 2002-04-09 23:13 UTC | Modified: | 2002-12-19 07:38 UTC |
|
||||||||||
| From: | dphelan at bcps dot org | Assigned: | ||||||||||||
| Status: | Closed | Package: | Filesystem function related | |||||||||||
| PHP Version: | 4.1.2 | OS: | FreeBSD 4.5-Stable | |||||||||||
| Private report: | No | CVE-ID: | None | |||||||||||
[2002-04-09 23:13 UTC] dphelan at bcps dot org
In PHP 4.1.2 (and 4.2.0-dev) Calling file() on a 4-line text file with Macintosh line endings (CR) results in a 1-element array: file: (file.txt) blah test three four Code: $array = file( 'file.txt. ); echo count( $array ); >> Returns '1' (Verified by print_r) file() is ignoring the line endings, but the correct result happens for files with Windows (CRLF) and Unix (LF) line endings.
Patches
Pull Requests
History
AllCommentsChangesGit/SVN commits
[2002-06-14 13:46 UTC] philip@php.net
[2002-09-23 13:36 UTC] wez@php.net
[2002-12-18 20:13 UTC] dreamchimney at yahoo dot com
[2002-12-19 07:38 UTC] wez@php.net
If you must use PHP < 4.3, you can do something like this: $fp = fopen($filename, "r"); $data = fread($fp, filesize($filename)); fclose($fp); $lines = explode("\r", $data); BEWARE: file() keeps the \r at the end of each line, whereas the code snippet above does not.