For many times, we will not use phpftp function file upload, but some advanced WEB applications will use ftp functions. for example, if I want to transfer uploaded images to server B, data is stored on server A. normal PHP files cannot be uploaded, but ftp functions can be used.
The code is as follows:
// Define variables
$ Local_file = 'local.zip ';
$ Server_file = 'server.zip ';
// Connect to the FTP server
$ Conn_id = ftp_connect ($ ftp_server );
// Verify the login server
$ Login_result = ftp_login ($ conn_id, $ ftp_user_name, $ ftp_user_pass );
// Download an object
If (ftp_get ($ conn_id, $ local_file, $ server_file, FTP_BINARY )){
Echo "Download $ local_file succeeded n ";
} Else {
Echo "Download failed n ";
}
// Close the ftp connection
Ftp_close ($ conn_id );
?>
Ftp_connect-create a new FTP connection
Ftp_login-log on to the FTP server
Ftp_get-download an object from the FTP server
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.