ftp_nb_continue() 函數繼續接收或發送文件到 FTP 服務器。這意味著下載繼續。
用法
ftp_nb_continue(con);
參數
con− FTP 連接。
返回
ftp_nb_continue() 函數返回以下任何值 -
FTP_FAILED− 發送/接收失敗
FTP_FINISHED− 發送/接收完成
FTP_MOREDATA- 正在發送/接收
示例
下麵是一個例子。這裏,“new.txt” 是本地文件,而服務器文件是 “server.txt” -
<?php
$c = ftp_nb_get($ftp_conn, "new.txt", "server.txt", FTP_BINARY)
while ($c == FTP_MOREDATA) {
// downloading continues
echo "The file is downloading!";
$d = ftp_nb_continue($ftp_conn);
}
if ($s != FTP_FINISHED) {
echo "The file isn't downloading now!";
exit(1);
}
?>
相關用法
- PHP ftp_nb_put()用法及代碼示例
- PHP ftp_nb_fget()用法及代碼示例
- PHP ftp_nb_fput()用法及代碼示例
- PHP ftp_nb_get()用法及代碼示例
- PHP ftp_nlist()用法及代碼示例
- PHP ftp_rawlist()用法及代碼示例
- PHP ftp_close()用法及代碼示例
- PHP ftp_chmod()用法及代碼示例
- PHP ftp_rmdir()用法及代碼示例
- PHP ftp_size()用法及代碼示例
- PHP ftp_login()用法及代碼示例
- PHP ftp_rename()用法及代碼示例
- PHP ftp_put()用法及代碼示例
- PHP ftp_connect()用法及代碼示例
- PHP ftp_site()用法及代碼示例
- PHP ftp_set_option()用法及代碼示例
- PHP ftp_pwd()用法及代碼示例
- PHP ftp_get_option()用法及代碼示例
- PHP ftp_fget()用法及代碼示例
- PHP ftp_mkdir()用法及代碼示例
注:本文由純淨天空篩選整理自Karthikeya Boyini大神的英文原創作品 ftp_nb_continue() function in PHP。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。