You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
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);
The text was updated successfully, but these errors were encountered: