PHP code example of league / flysystem-rackspace
1. Go to this page and download the library: Download league/flysystem-rackspace 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/ */
league / flysystem-rackspace example snippets
use OpenCloud\OpenStack;
use OpenCloud\Rackspace;
use League\Flysystem\Filesystem;
use League\Flysystem\Rackspace\RackspaceAdapter as Adapter;
$client = new Rackspace(Rackspace::UK_IDENTITY_ENDPOINT, array(
'username' => ':username',
'apiKey' => ':password',
));
$store = $client->objectStoreService('cloudFiles', 'LON');
$container = $store->getContainer('flysystem');
$filesystem = new Filesystem(new Adapter($container));