How To Connect ftp Server Using php

Websolutionstuff | May-12-2021 | Categories : PHP

Hello All,

In this post i will show you how to connect ftp server using php.

PHP provide inbuilt function to connect ftp server using ftp_connect() function. Usnig ftp connection you can transferring files through FTP easily. Here i will show you how we can connect to ftp server and ftp login in php.

The ftp_connect() function opens an FTP connection to the specified host. When connection is open, you can run FTP functions against the server.

 

Syntax :

ftp_connect(host, port, timeout);

 

Parameter Details : 

host : This is Required parameter for ftp connection and Host Can be domain address or IP address.

 

port : This is Optional parameter for ftp connection, it specifies the port of the FTP server and default port  is 21.

 

timeout :  This is Optional parameter for ftp connection,it specifies timeout for all subsequent network operations and default timeout is 90 seconds.

 

Example :  

<?php

// connect to FTP server

$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");

// login to FTP server

$login = ftp_login($ftp_conn, $ftp_username, $ftp_userpass);

// close ftp connection

ftp_close($ftp_conn);
?>

 

Recommended Post
Featured Post
How to Create Payment Link in Stripe using API in Laravel 10
How to Create Payment Link in...

In today's digital age, the ability to facilitate online payments efficiently is crucial for businesses and develope...

Read More

Oct-09-2023

Laravel 9 Group By Query Example
Laravel 9 Group By Query Examp...

In this article, we will see laravel 9 group by query example. how to use group by in laravel 9. As you might expec...

Read More

Mar-29-2022

How To Send Email using Node.js
How To Send Email using Node.j...

Hello Friends, In this tutorial we will learn how to send email using node.js app. In this tutorial we will see send...

Read More

Jul-28-2021

How To Add Index In Laravel 10 Migration
How To Add Index In Laravel 10...

In this article, we will see how to add an index in laravel 10 migration. Here, we will learn about the laravel 10...

Read More

May-03-2023