例
サーバーからファイルをダウンロードし、ダウンロードを続ける(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リファレンス