使用 php 作为字节数组从 Azure 下载文件的 PHP 等效项是什么?用于文件存储。这是在 C# 和 blob 中完成的:
CloudBlockBlob blob =
cloudBlobContainer.GetBlockBlobReference(targetFileName);
blob.FetchAttributes();
long fileByteLength = blob.Properties.Length;
Byte[] myByteArray = new Byte[fileByteLength];
blob.DownloadToByteArray(myByteArray, 0);
谢谢