无法用PHP上传Azure Blob存储

时间:2020-08-14 09:18:30

标签: php azure azure-storage-blobs azure-blob-storage

我使用这个official Azure Blob Storage sample file

它显示了如何上传HelloWorld.txt。 已成功上传。但是,如果一点改变了,例如从HelloWorld.txt变为Hello.jpg,则会上传0字节文件。

我的代码phpQS.php是

// Create blob client.
$blobClient = BlobRestProxy::createBlobService($connectionString);

$fileToUpload = "Hello.jpg";

if (!isset($_GET["Cleanup"])) {
    // Create container options object.
    $createContainerOptions = new CreateContainerOptions();

...

}

您能告诉我如何完全上传文件吗?

这是Webbrowser(带有HTML)的输出。

enter image description here

Azure控制台是

enter image description here

1 个答案:

答案 0 :(得分:0)

示例项目有问题,这就是为什么它不起作用。 https://github.com/Azure-Samples/storage-blobs-php-quickstart/issues/6