ID:               39753
 Updated by:       [EMAIL PROTECTED]
 Reported By:      alek dot silverstone at gmail dot com
-Status:           Open
+Status:           Bogus
 Bug Type:         FTP related
 Operating System: Windows XP
 PHP Version:      5.2.0
 New Comment:

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.




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

[2006-12-06 14:22:20] alek dot silverstone at gmail dot com

Description:
------------
This script failed after 1000-2000 loops.

Reproduce code:
---------------
<?php
  set_time_limit(0);
  $i=1;

  while (TRUE)
  {
    $date=date('H:i:s');
    $ftp=ftp_connect('127.0.0.1',21,10);
    if ($ftp) $login=ftp_login($ftp,'anonymous',$i);
    if ($ftp && $login)
    {
      if (($i % 100) === 0) echo "[$date] $i - online.\n";
    } else {
      echo "[$date] $i - offline.\n";
      break;
    }
    @ftp_close($ftp); $i++;
  }
?>



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


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

Reply via email to