1. Go to this page and download the library: Download icyboy/flysystem 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/ */
icyboy / flysystem example snippets
use Icyboy\Flysystem\Facades\Flysystem;
// you can alias this in config/app.php if you like
Flysystem::put('hi.txt', 'foo');
// we're done here - how easy was that, it just works!
Flysystem::read('hi.txt'); // this will return foo
use Icyboy\Flysystem\Facades\Flysystem;
// note the foo connection does not ship with this package, it's hypothetical
Flysystem::connection('foo')->put('test.txt', 'bar');
// now we can read that file
Flysystem::connection('foo')->read('test.txt'); // this will return bar
use Icyboy\Flysystem\Facades\Flysystem;
// writing this:
Flysystem::connection('local')->read('test.txt');
// is identical to writing this:
Flysystem::read('test.txt');
// and is also identical to writing this:
Flysystem::connection()->read('test.txt');
// this is because the local connection is configured to be the default
Flysystem::getDefaultConnection(); // this will return local
// we can change the default connection
Flysystem::setDefaultConnection('foo'); // the default is now foo
use Icyboy\Flysystem\FlysystemManager;
use Illuminate\Support\Facades\App; // you probably have this aliased already
class Foo
{
protected $flysystem;
public function __construct(FlysystemManager $flysystem)
{
$this->flysystem = $flysystem;
}
public function bar()
{
$this->flysystem->read('test.txt');
}
}
App::make('Foo')->bar();
bash
$ php artisan vendor:publish
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.