Phpftp function file Upload _ PHP Tutorial

Source: Internet
Author: User
Tags ftp connection
Phpftp function file upload. For many other 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 the uploaded image to server B, we will not use it for uploading php ftp function files for many other times, however, some advanced WEB applications use ftp functions. for example, I want to transfer the uploaded images to server B and save the data to server, ordinary php files cannot be uploaded to an instance, but ftp functions can be used to facilitate the 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 );
?>


Upload ftp function files. However, ftp functions are used when advanced WEB applications are used. for example, I want to upload uploaded images to server B...

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.