Php ftp function File Upload

Source: Internet
Author: User
Tags ftp connection

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 );
?>


Related Article

Contact Us

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.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.