PHP code example of myenso / module-azure-blob-storage

1. Go to this page and download the library: Download myenso/module-azure-blob-storage 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/ */

    

myenso / module-azure-blob-storage example snippets



'remote_storage' => [
    'driver' => 'azure-blob-storage',
    'config' => [
        'account_name' => 'devstoreaccount1',
        'account_key' => 'Eby8vdM02xNOcqFe6SuKF4rPcU31qVbVSveG+8n8uBL2AZuZ4nSPZo98YwHst9JdXN3H3G8HC1E0T1G6+UD7Lw==',
        'blob_container' => 'category-images',
        'endpoint' => 'http://10.192.19.58:10000/devstoreaccount1/'
    ]
],