ftp_nb_continue
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
ftp_nb_continue — ファイルの取得/送信を継続する(非ブロッキング)
戻り値
FTP_FAILED
、FTP_FINISHED
あるいは FTP_MOREDATA
を返します。
変更履歴
バージョン | 説明 |
---|---|
8.1.0 |
引数 ftp は、FTP\Connection
のインスタンスを期待するようになりました。
これより前のバージョンでは、リソース を期待していました。
|
例
例1 ftp_nb_continue() の例
<?php
// ダウンロードを開始する
$ret = ftp_nb_get($ftp, "test", "README", FTP_BINARY);
while ($ret == FTP_MOREDATA) {
// ダウンロードを継続する…
$ret = ftp_nb_continue($ftp);
}
if ($ret != FTP_FINISHED) {
echo "There was an error downloading the file...";
exit(1);
}
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google