如何使用带有 Azure 存储帐户的 Azure 文件中的 PHP 显示文本内容本身?

How can display text content itself using PHP from Azure File with Azure storage account?

我已经从 https://github.com/Azure/azure-storage-php 安装了 git 库。

我能搞清楚创建文件、下载文件、删除文件。

但是如何获取文件的文件内容并显示在浏览器上呢?

谢谢。

我对 PHP 了解不多,但我相信您想要使用的 SDK 方法是 getBlob which reads a blob and returns an object of type GetBlobResult

可以使用 getContentStream() 方法读取 blob 的内容。


如果您使用的是 Azure 文件,方法或多或少会保持不变。你会打电话给 getFile method which reads a file and returns an object of type GetFileResult.

可以使用 getContentStream() 方法读取文件内容。