PHP code example of thomasvantuycom / flysystem-cloudinary
1. Go to this page and download the library: Download thomasvantuycom/flysystem-cloudinary 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/ */
thomasvantuycom / flysystem-cloudinary example snippets
use Cloudinary\Cloudinary;
use League\Flysystem\Filesystem;
use ThomasVantuycom\FlysystemCloudinary\CloudinaryAdapter;
$client = new Cloudinary([
'cloud' => [
'cloud_name' => 'CLOUD_NAME',
'api_key' => 'API_KEY',
'api_secret' => 'API_SECRET',
],
]);
$adapter = new CloudinaryAdapter($client);
$filesystem = new Filesystem($adapter);
use League\Flysystem\PathPrefixng\PathPrefixedAdapter;
$adapter = new CloudinaryAdapter($client, 'path/to/folder');
$pathPrefixedAdapter = new PathPrefixedAdapter($adapter, 'path/to/folder');
$adapter = new CloudinaryAdapter($client, $mimeTypeDetector);
$adapter = new CloudinaryAdapter($client, null, true);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.