例
从服务器下载文件,继续下载(non-blocking) ,同时做别的事情:
<?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_connection );
参数 | 描述 |
---|---|
ftp_connection | 需要。 指定FTP连接使用 |
技术细节
返回值: | 该函数返回下列值之一:
|
---|---|
PHP版本: | 4.3+ |
<PHP FTP参考