Azure / azure-sdk-for-php

Microsoft Azure SDK for PHP
http://azure.microsoft.com/en-us/develop/php/
Apache License 2.0
415 stars 276 forks source link

How to set content disposition for blob storage #1004

Open amitagrawal124 opened 4 years ago

amitagrawal124 commented 4 years ago

I am trying to upload the pdf file and trying to set the content-disposition inline to preview it on the browser.

$content = fopen($targetdir.'/'.$fileToUpload, "r"); $options = new CreateBlobOptions(); $options->setContentDisposition('inline'); $blobClient->createBlockBlob($containerName, $fileToUpload, $content, $options);