Php method of establishing FTP connection _php tutorial

Source: Internet
Author: User
Tags ftp connection

Php method of establishing FTP connection


This article mainly introduces the method of building FTP connection in PHP, the example analyzes the PHP operation FTP related functions and the use of skills, with a certain reference value, the need for friends can refer to the next

The example in this article describes how PHP establishes FTP connections. Share to everyone for your reference. The specific analysis is as follows:

Read the FTP function today and summarize:

FTP-related functions:

Ftp_connect (Host,part,timeout) to establish a new FTP connection, host is the server to connect to, part is the port, the default 21,timeout is the network connection time-out

Ftp_login (Con,user,password) login Ftp,con is an upstream established FTP connection. User and password Password

Ftp_close (con) Closes con this connection.

FTP_PASV (con,true) turns on con's passive transfer mode. The data is transmitted by the client. Of course, it can only be executed when the login is successful.

Ftp_put (Con,remove,local,mode) uploads the local path file to con and names it as the remove file. Mode is the transmission (ftp_ascii,ftp_binary)

The following example:

?

1

2

3

4

5

6

7

$host = ' host ';

$user = ' user ';

$pwd = ' pwd ';

$con = Ftp_connect ($host);

$login = Ftp_login ($con, $user, $pwd);

Echo ftp_put ($con, ' newname.txt ', ' text.txt ', ftp_ascii);

Ftp_close ($con);

I hope this article is helpful to everyone's PHP programming.

http://www.bkjia.com/PHPjc/963974.html www.bkjia.com true http://www.bkjia.com/PHPjc/963974.html techarticle How to establish FTP connection in PHP This article mainly introduces the method of building FTP connection in PHP, the example analyzes the PHP operation FTP related functions and the use of skills, with a certain reference value, the need for friends ...

  • 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.