ftp_nb_continue 连续获取/发送文件(以不分块的方式 non-blocking)

发表日期:2021-07-01 08:56:47 | 来源: | | 浏览(878) 分类:FTP 函数

ftp_nb_continue

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

ftp_nb_continue连续获取/发送文件(以不分块的方式 non-blocking)

说明

ftp_nb_continue(resource $ftp_stream): int

以不分块的方式,连续获取/发送文件。

参数

ftp_stream

FTP 连接句柄。

返回值

返回 FTP_FAILEDFTP_FINISHEDFTP_MOREDATA.

范例

示例 #1 ftp_nb_continue() 示例

<?php 
// Initiate the download$ret = ftp_nb_get($my_connection, "test", "README", FTP_BINARY);
while ($ret == FTP_MOREDATA) {
   // Continue downloading...   $ret = ftp_nb_continue($my_connection);
}
if ($ret != FTP_FINISHED) {
   echo "There was an error downloading the file...";
   exit(1);
}
?>

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。