<?php
// Initialisation du téléchargement $ret = ftp_nb_get($my_connection, "test", "README", FTP_BINARY); while ($ret == FTP_MOREDATA) {
// Continue le téléchargement... $ret = ftp_nb_continue($my_connection); } if ($ret != FTP_FINISHED) { echo "Il y a eu une erreur pendant le téléchargement du fichier..."; exit(1); } ?>
|