PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ftp_nb_fget> <ftp_mkdir
Last updated: Fri, 18 Jul 2008

view this page in

ftp_nb_continue

(PHP 4 >= 4.3.0, PHP 5)

ftp_nb_continue — Continua a ricevere/trasmettere un file in modalita' non bloccante

Descrizione

int ftp_nb_continue ( resource $ftp_stream )

Continua a ricevere/trasmettere un file in modalita' non bloccante.

Example #1 Esempio di funzioneftp_nb_continue()

<?php

// Inizia lo scaricamento
$ret ftp_nb_get($my_connection"test""README"FTP_BINARY);
while (
$ret == FTP_MOREDATA) {

   
// Continua lo scaricamento...
   
$ret ftp_nb_continue($my_connection);
}
if (
$ret != FTP_FINISHED) {
   echo 
"Errore nello scaricamento del file...";
   exit(
1);
}
?>

Restituisce FTP_FAILED oppure FTP_FINISHED oppure FTP_MOREDATA.



add a note add a note User Contributed Notes
ftp_nb_continue
There are no user contributed notes for this page.

ftp_nb_fget> <ftp_mkdir
Last updated: Fri, 18 Jul 2008
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites