If you want to monitor the progress of the download, you may use the filesize()-Function.
But note: The results of said function are cached, so you'll always get 0 bytes. Call clearstatcache() before calling filesize() to determine the actual size of the downloaded file.
This may have performance implications, but if you want to provide the information, there's no way around it.
Above sample extended:
<?php
// get the size of the remote file
$fs = ftp_size($my_connection, "test");
// Initate the download
$ret = ftp_nb_get($my_connection, "test", "README", FTP_BINARY);
while ($ret == FTP_MOREDATA) {
clearstatcache(); // <- this is important
$dld = filesize($locfile);
if ( $dld > 0 ){
// calculate percentage
$i = ($dld/$fs)*100;
printf("\r\t%d%% downloaded", $i);
}
// Continue downloading...
$ret = ftp_nb_continue ($my_connection);
}
if ($ret != FTP_FINISHED) {
echo "There was an error downloading the file...";
exit(1);
}
?>
Philip
ftp_nb_fget
(PHP 4 >= 4.3.0, PHP 5)
ftp_nb_fget — Obtém um arquivo de um servidor FTP e escreve-o para um arquivo aberto(sem bloquear)
Descrição
ftp_nb_fget() obtém um arquivo remoto do servidor FTP.
A diferença entre esta função e ftp_fget() é que esta função obtém o arquivo de forma assincronoma, assim seu programa pode realizar outras operações enquanto o arquivo esta sendo copiado.
Parâmetros
- ftp_stream
-
O identificador com a conexão FTP.
- handle
-
Um ponteiro de arquivo aberto para o qual nós guardamos os dados.
- remote_file
-
O caminho para o arquivo remoto.
- mode
-
O modo de transferência. Deve ser FTP_ASCII ou FTP_BINARY.
- resumepos
Valor Retornado
Retorna FTP_FAILED ou FTP_FINISHED ou FTP_MOREDATA.
Exemplos
Exemplo #1 Exemplo ftp_nb_fget()
<?php
// open some file for reading
$file = 'index.php';
$fp = fopen($file, 'w');
$conn_id = ftp_connect($ftp_server);
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// Initate the download
$ret = ftp_nb_fget($conn_id, $fp, $file, FTP_BINARY);
while ($ret == FTP_MOREDATA) {
// Do whatever you want
echo ".";
// Continue downloading...
$ret = ftp_nb_continue($conn_id);
}
if ($ret != FTP_FINISHED) {
echo "There was an error downloading the file...";
exit(1);
}
// close filepointer
fclose($fp);
?>
Veja Também
- ftp_nb_get() - Obtém um arquivo do servidor FTP e escreve-o em um arquivo local (sem bloquear)
- ftp_nb_continue() - Continua a receber/enviar um arquivo (sem bloquear)
- ftp_fget() - Copia um arquivo do servidor FTP e salva em um arquivo aberto
- ftp_get() - Copia um arquivo do servidor FTP
ftp_nb_fget
16-Nov-2004 11:53
