PHP Classes

File: vendor/league/flysystem/docs/adapter/ftp.md

Recommend this page to a friend!
  Packages of Abed Nego Ragil Putra   Laravel Blogging Platform   vendor/league/flysystem/docs/adapter/ftp.md   Download  
File: vendor/league/flysystem/docs/adapter/ftp.md
Role: Auxiliary data
Content type: text/markdown
Description: Auxiliary data
Class: Laravel Blogging Platform
Manage blog posts using Laravel and Bootstrap
Author: By
Last change:
Date: 7 months ago
Size: 532 bytes
 

Contents

Class file image Download

layout: default permalink: /adapter/ftp/ title: FTP Adapter

FTP Adapter

Installation

Comes with the main Flysystem package.

Usage

use League\Flysystem\Filesystem;
use League\Flysystem\Adapter\Ftp as Adapter;

$filesystem = new Filesystem(new Adapter([
    'host' => 'ftp.example.com',
    'username' => 'username',
    'password' => 'password',

    / optional config settings */
    'port' => 21,
    'root' => '/path/to/root',
    'passive' => true,
    'ssl' => true,
    'timeout' => 30,
]));