For many other times, we will not use php ftp function file upload, but some advanced WEB applications will use ftp functions, for example, if I want to transfer the uploaded image to server B and save the data to server A, the normal PHP file cannot be uploaded to an instance, but the ftp function can be used as A convenient instance.
For many other times, we will not use the ftp function file upload in the php tutorial, but some advanced WEB applications will use the ftp function, for example, if I want to transfer the uploaded image to server B and save the data to server A, the normal PHP file cannot be uploaded to an instance, but the ftp function can be used as A convenient instance.
// 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 );
?>