Easy Tutorial
❮ Func Array Krsort Php Cookies ❯

PHP ftp_connect() Function



Definition and Usage

The ftp_connect() function opens an FTP connection.

Once the connection is open, you can run FTP functions through the server.

Syntax

Parameter Description
host Required. Specifies the FTP server to connect to. It can be a domain address or an IP address. This parameter must not include "ftp://" or a slash.
port Optional. Specifies the port of the FTP server. The default is 21.
timeout Optional. Specifies the timeout for the FTP connection. The default is 90 seconds.

Example

This example attempts to connect to an FTP server. If the connection fails, the die() function will terminate the script and output a message:


❮ Func Array Krsort Php Cookies ❯