ftp_nb_get

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

ftp_nb_getRecupera un archivo desde el servidor FTP y lo escribe en un archivo local (modo no-bloqueo)

Descripción

ftp_nb_get(
    resource $ftp_stream,
    string $local_file,
    string $remote_file,
    int $mode,
    int $resumepos = 0
): int

ftp_nb_get() recupera un archivo remoto desde el servidor FTP, y lo guarda en un archivo local.

La diferencia entre esta función y ftp_get() es que esta función recupera el archivo de forma asincrónica, de modo que su programa puede realizar otras operaciones mientras el archivo está siendo descargado.

Parámetros

ftp_stream

El identificador de enlace de la conexión FTP.

local_file

La ruta del archivo local (se sobrescribirá si el archivo ya existe).

remote_file

La ruta del archivo remoto.

mode

El modo de transferencia. Debe ser FTP_ASCII o FTP_BINARY.

resumepos

Posición en el fichero remoto en donde empezar la descarga

Valores devueltos

Devuelve FTP_FAILED o FTP_FINISHED o FTP_MOREDATA.

Ejemplos

Ejemplo #1 Ejemplo de ftp_nb_get()

<?php

// Iniciar la descarga
$ret = ftp_nb_get($my_connection, "test", "README", FTP_BINARY);
while (
$ret == FTP_MOREDATA) {

// Haga lo que quiera
echo ".";

// Continuar la descarga...
$ret = ftp_nb_continue($my_connection);
}
if (
$ret != FTP_FINISHED) {
echo
"Hubo un error al descargar el archivo...";
exit(
1);
}
?>

Ejemplo #2 Reanudar una descarga con ftp_nb_get()

<?php

// Iniciar
$ret = ftp_nb_get($my_connection, "test", "README", FTP_BINARY,
filesize("test"));
// O: $ret = ftp_nb_get($my_connection, "test", "README",
// FTP_BINARY, FTP_AUTORESUME);
while ($ret == FTP_MOREDATA) {

// Haga lo que quiera
echo ".";

// Continuar la descarga...
$ret = ftp_nb_continue($my_connection);
}
if (
$ret != FTP_FINISHED) {
echo
"Hubo un error al descargar el archivo...";
exit(
1);
}
?>

Ejemplo #3 Reanudar una descarga en la posición 100 a un nuevo archivo con ftp_nb_get()

<?php

// Deshabilitar Autoseek
ftp_set_option($my_connection, FTP_AUTOSEEK, false);

// Iniciar
$ret = ftp_nb_get($my_connection, "newfile", "README", FTP_BINARY, 100);
while (
$ret == FTP_MOREDATA) {

/* ... */

// Continuar la descarga...
$ret = ftp_nb_continue($my_connection);
}
?>

En el ejemplo anterior, newfile es 100 bytes menor que README en el servidor FTP por eso comenzamos la lectura en la posición 100. Si no hubiesemos deshabilitado FTP_AUTOSEEK, los primeros 100 bytes de newfile serían '\0'.

Ver también

  • ftp_nb_fget() - Recupera un archivo desde el servidor FTP y lo escribe en un archivo abierto (modo no-bloqueo)
  • ftp_nb_continue() - Continúa recuperando/enviando un archivo (modo no-bloqueo)
  • ftp_fget() - Descarga un archivo desde el servidor FTP y lo guarda en un archivo abierto
  • ftp_get() - Descarga un archivo desde el servidor FTP

add a note add a note

User Contributed Notes 1 note

up
0
passerbyxp at gmail dot com
12 years ago
Note that you may have to keep calling ftp_nb_continue in order to complete the download. For example, if you do this:

<?php
ftp_nb_get
($conn,$localfile,$remotefile,FTP_BINARY)
//do some LONG time work
while(ftp_nb_continue($conn)!=FTP_FINISHED){}
?>

Your local file may only contains a few kilobytes and the later ftp_nb_continue will keep raising warning of no more data (due to connection time out, I guess).

So you may want to do this instead:

<?php
$dl
=ftp_nb_get($conn,$localfile,$remotefile,FTP_BINARY)
//part of long time work
if(ftp_nb_continue($conn)==FTP_MOREDATA) {}
//part of long time work
if(ftp_nb_continue($conn)==FTP_MOREDATA) {}
//continue to do this until you finish the long time work
while(ftp_nb_continue($conn)==FTP_MOREDATA){}
?>

This happened on my Windows XP + PHP 5.3.8 under CLI. Hope this helps someone.
To Top