ID: 5708
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Status: Bogus
Bug Type: Misbehaving function
Operating System: Linux
PHP Version: 3.0.16
New Comment:

After upgrading to php 4, this problem disapeared.  But it is still reproducable on 
any of my servers still running 3.

Previous Comments:
------------------------------------------------------------------------

[2001-09-09 09:34:50] [EMAIL PROTECTED]

I highly doubt this is truly a PHP bug, if you can find a
test case that can always be reproduced, please open a new
bug report.

------------------------------------------------------------------------

[2000-07-20 21:46:32] [EMAIL PROTECTED]

I'm opening up a series of files with fopen, and reading them into an array using 
fgets.  After reading the first couple files in succesfully, fopen falsly reports that 
further files do not exist.

Each of the failures echoes the $filename, if I take that URL and pull it up in a web 
browser, it retrieves the file.

This is all in a loop that generates the filename variables.

for (....... {

  $filename = "http://host.domain.com/"; . $year . "/" . $months $month] . "/" . $day . 
"/" . "$query[$ws]" . ".txt";
  $fd = @fopen($filename,"r"); 
  if (!$fd) { 
    print "Unable to open file: $filename" . "<br>";
    $ws++;
    continue;
  }
  while (!feof($fd)) {
    $data[] = fgets($fd, 4096);
  }
  fclose ($fd);


....... } 

So what I end up with is proper information for the first file or two, the rest of the 
files fail regaurdless of whether they exist or not.

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=5708&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to