PHP | ftp_connect() function Last Updated : 07 Aug, 2021 Comments Improve Suggest changes Like Article Like Report The ftp_connect() function is an inbuilt function in PHP which is used to create a new connection to the specified FTP server or Host. When connection is successful then only other FTP functions can be run against the server. Syntax: ftp_connect( $ftp_host, $ftp_port, $timeout ); Parameter: This function accepts three parameters as mentioned above and described below: $ftp_host: It is required parameter and used to specify the host name or the ftp server to connect to. It can be domain name or IP address and these address must not prefixed with "ftp://" or must not have any slashes at the end of that url.$ftp_port: It is optional parameter. It specifies the port number to connect to. If it is not provided then the default port number for FTP is used. The default ftp port number is 21.$timeout: It is optional parameter. It specifies the timeout for all subsequent network operation. If this parameter is not provided then the default parameter is being used, which is 90 seconds. Note: Timeout can be queried or changed anytime using ftp_get_option() and ftp_set_option() accordingly. Return Value: It returns FTP stream on success or False on failure. Note: This function is available for PHP 4.0.0 and newer version.The following examples cannot be run on online IDE. So try to run in some PHP hosting server or localhost with proper ftp server name. Below programs illustrate the ftp_connect() function in PHP: Example 1: PHP <?php // Connect to FTP server $ftp_server = "localhost"; // Establish ftp connection $ftp_connection = ftp_connect($ftp_server) or die("Could not connect to $ftp_server"); if($ftp_connection) { echo "Successfully connected to the ftp server!"; // Closing connection ftp_close($ftp_connection); } ?> Output: Successfully connected to the ftp server! Example 2: Connect to ftp server using port 21. PHP <?php // Connect to FTP server $ftp_server = "localhost"; // Establish ftp connection $ftp_connection = ftp_connect($ftp_server, 21) or die("Could not connect to $ftp_server"); // Port number 21 is used as second parameter // in the function ftp_connect() if( $ftp_connection ) { echo "Successfully connected to the ftp server!"; // Closing connection ftp_close( $ftp_connection ); } ?> Output: Successfully connected to the ftp server! Reference: https://www.php.net/manual/en/function.ftp-connect.php Comment More infoAdvertise with us Next Article PHP | ftp_connect() function G gekcho Follow Improve Article Tags : Web Technologies PHP PHP-function PHP- FTP Similar Reads PHP | ftp_ssl_connect() Function The ftp_ssl_connect() function is an inbuilt function in PHP which opens a secure SSL-FTP connection. FTP functions can be run against the server while the connection is open. It opens an explicit SSL-FTP connection to the host specified in parameter. It will succeed even if the server's certificate 2 min read PHP | ftp_exec() function The ftp_exec() function is an inbuilt function in PHP that is used to execute a command on the FTP server. Syntax: ftp_exec( $ftp_connection, $command ) Parameters: This function accepts two parameters as mentioned above and described below:  $ftp_connection: It is required parameter. It specifies 2 min read PHP | ftp_alloc() function The ftp_alloc() function is an inbuilt function in PHP which is used to allocate space for file to be uploaded in FTP server.Syntax:  ftp_alloc( $ftp_connection, $filesize, $result ); Parameter: This function accepts three parameters as mentioned above and described below:  $ftp_connection: It is 3 min read PHP | ftp_delete() function The ftp_delete() function is an inbuilt function in PHP which is used to delete a file on the FTP server. Syntax: ftp_delete( $ftp_connection, $file ) Parameters: This function accepts two parameters as mentioned above and described below:  $ftp_connection: It is required parameter. It specifies t 2 min read PHP | ftp_chdir() function The ftp_chdir() function is an inbuilt function in PHP which is used to change the current directory on the FTP server. Syntax: ftp_chdir( $ftp_connection, $directory ) Parameter: This function accepts two parameters as mentioned above and described below:  $ftp_connection: It is required paramete 2 min read Like