php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #11961 \r\n or \n
Submitted: 2001-07-08 18:45 UTC Modified: 2002-06-02 14:03 UTC
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: wuxinan at 263 dot net Assigned:
Status: Not a bug Package: Strings related
PHP Version: 4.0.6 OS: Win98 SE
Private report: No CVE-ID: None
 [2001-07-08 18:45 UTC] wuxinan at 263 dot net
I've submitted this bug some days before but I didn't get very kind reply. I decided to resubmit it.

test.php:
<?php
	$fp = fopen("test.txt", "r");
	$str = "";
	while (!feof($fp)) $str .= fgets($fp, 64);
	fclose($fp);
	echo count(split("\n", $str))."<br />".count(split("\r\n", $str));
?>

And I've put 3 random lines in test.txt
OK, my PHP is running as Apache module, so when I type "localhost/test.php", I got the output "3<br />1".

Then, I run this script in CGI mode. This can be done simply by the command "c:\php_path\php.exe test.php", and I will get the output "3<br />3".

OK, so PHP is not portable, even in the same platform but different PHP running mode. CGI PHP and module PHP interpret "\r\n" differently.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-07-22 16:17 UTC] andy@php.net
reclassified
 [2001-07-22 16:17 UTC] andy@php.net
reclassified
 [2002-06-02 14:03 UTC] derick@php.net
Thank you for taking the time to report a problem with PHP.
Unfortunately your version of PHP is too old -- the problem
might already be fixed. Please download a new PHP
version from http://www.php.net/downloads.php

If you are able to reproduce the bug with one of the latest
versions of PHP, please change the PHP version on this bug report
to the version you tested and change the status back to "Open".
Again, thank you for your continued support of PHP.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 17:01:29 2024 UTC