您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1504 复制当前网址

ftp_nb_continue



PHP ftp_nb_continue() 函数

定义和用法

ftp_nb_continue() 函数连续获取 / 发送文件。


该函数返回下列值:

  • FTP_FAILED (send/receive failed)

  • FTP_FINISHED (send/receive completed)

  • FTP_MOREDATA (send/receive in progress)

该函数异步地发送/获取文件。这意味着您的程序可以在文件下载时执行其他操作。


语法

ftp_nb_continue(ftp_connection)

参数描述
ftp_connection必需。规定要使用的 FTP 连接(FTP 连接的标识符)。


例子

<?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);
?>


文章来源:https://liqingbo.com/blog-668.html

上一篇:ftp_nb_fget

下一篇:ftp_mkdir

评论