PHP code example of isidrogg / ftp-bundle

1. Go to this page and download the library: Download isidrogg/ftp-bundle library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

isidrogg / ftp-bundle example snippets

 bash
$ php bin/vendors install
 php

// app/autoload.php

$loader->registerNamespaces(array(
    // ...
    'Ijanki' => __DIR__.'/../vendor/bundles',
));
 php

// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Isidrogg\Bundle\FtpBundle\IsidroggFtpBundle(),
    );
}
 php


use Isidrogg\Bundle\FtpBundle\Exception\FtpException;

public function indexAction()
{
    //...
    try {
        $ftp = $this->container->get('isidrogg_ftp');
    	$ftp->connect($host);
    	$ftp->login($username, $password);
    	$ftp->put($destination_file, $source_file, FTP_BINARY);

    } catch (FtpException $e) {
    	echo 'Error: ', $e->getMessage();
    }
    //...
}