PHP code example of academe / laravel-azure-file-storage-driver
1. Go to this page and download the library: Download academe/laravel-azure-file-storage-driver 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/ */
academe / laravel-azure-file-storage-driver example snippets
[
...
'disks' => [
...
// Name this disk for your application to reference.
'azure-file-storage' => [
// The driver provided by this package.
'driver' => 'azure-file-storage',
// Account credentials.
'storageAccount' => env('AZURE_FILE_STORAGE_ACCOUNT'),
'storageAccessKey' => env('AZURE_FILE_STORAGE_ACCESS_KEY'),
// The file share.
// This driver supports one file share at a time (you cannot
// copy or move files between shares natively).
'fileShareName' => env('AZURE_FILE_STORAGE_SHARE_NAME'),
// Optional settings
'disableRecursiveDelete' => false,
'driverOptions' => [],
'root' => 'root/directory', // Without leading '/'
],
],
];