从服务器下载文件,继续下载(非阻塞),同时做其他事情:
<?php
// initiate download
$d = ftp_nb_get($ftp_conn, "local.txt", "server.txt", FTP_BINARY)
while ($d == FTP_MOREDATA)
{
// do whatever you want
// continue downloading
$d = ftp_nb_continue($ftp_conn);
}
if ($d != FTP_FINISHED)
{
echo "Error downloading file.";
exit(1);
}
?>
ftp_nb_continue() 函数继续向 FTP 服务器接收/发送文件。
ftp_nb_continue(
ftp_conn);
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to use |
返回值: | 以下值之一:
|
---|---|
PHP 版本: | 4.3+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!