PHP code example of microsoft / azure-storage

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

    

microsoft / azure-storage example snippets




use MicrosoftAzure\Storage\Blob\BlobRestProxy;

use MicrosoftAzure\Storage\Common\ServiceException;

$blobClient = BlobRestProxy::createBlobService($connectionString);
$tableClient = TableRestProxy::createTableService($connectionString);
$queueClient = QueueRestProxy::createQueueService($connectionString);
$fileClient = FileRestProxy::createFileService($connectionString);

$blobClient = BlobRestProxy::createBlobServiceWithTokenCredential($token, $connectionString);
$queueClient = QueueRestProxy::createQueueServiceWithTokenCredential($token, $connectionString);

$tableClient = TableRestProxy::createTableService(
    $connectionString,
    $optionsWithMiddlewares
);

$retryMiddleware = RetryMiddlewareFactory::create(
    RetryMiddlewareFactory::GENERAL_RETRY_TYPE,  // Specifies the retry logic
    3,  // Number of retries
    1000,  // Interval
    RetryMiddlewareFactory::EXPONENTIAL_INTERVAL_ACCUMULATION,  // How to increase the wait interval
    true  // Whether to retry connection failures too, default false
);

$optionsWithMiddlewares = [
    'middlewares' = [
        $retryMiddleware
    ],
];
$tableClient = TableRestProxy::createTableService(
    $connectionString,
    $optionsWithMiddlewares
);

$tableClient->pushMiddleware($retryMiddleware);

        //example of creating the FileRestProxy
        $options["http"] = ["verify" => "<absolute path to cacert.pem>"];
        FileRestProxy::createFileService($connectionString, $options);
        
shell
git clone https://github.com/Azure/azure-storage-php.git
cd ./azure-storage-php
shell
php composer.phar install