ftp_nb_continue
Retrieve/send files continuously (non-blocking).
The ftp_nb_continue()
function continuously obtains/sends files.
This function returns the following values:
This function sends/gets files asynchronously. This means that your program can perform other actions when the file is downloaded.
<?php $source = "source.txt"; $target = fopen("target.txt", "w"); $conn = ftp_connect("ftp.testftp.com") or die("Could not connect"); ftp_login($conn,"admin","ert456"); $status = ftp_nb_fget($conn,$source,$target,FTP_ASCII); while ($status == FTP_MOREDATA) { $status = ftp_nb_continue($conn); } if ($status != FTP_FINISHED) { echo "Download error"; } ftp_close($conn); ?>
ftp_nb_continue ( ftp_connection )
parameter | describe |
---|---|
ftp_connection | Required. Specifies the FTP connection to be used (the identifier of the FTP connection). |