PHP code example of ikkez / f3-fal

1. Go to this page and download the library: Download ikkez/f3-fal 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/ */

    

ikkez / f3-fal example snippets

 php
$myFS = new \FAL\LocalFS('files/');
 php
$fal = \FAL::instance();
 php
$myFS = new \FAL\FTP('html/files/','ftp.mydomain.com','user','pass');
 php
$myFS = new \FAL\Dropbox($appKey,$appSecret);
 php
$dropbox = new \FAL\Dropbox($appKey,$appSecret);
$authTokens = $dropbox->login();
 php
$fal->load('read/this/file.xml',3600); // cache file for 1 hour

ListOptions  "-la"
 php
$fal->load('data/categories.xml');
$xmlFile = $fal->getFileStream(); // fal://data/categories.xml
$xml = simplexml_load_file($xmlFile);