gpt4 book ai didi

php - 使用 php 从子目录中获取 azure blob 文件

转载 作者:行者123 更新时间:2023-12-03 02:31:16 25 4
gpt4 key购买 nike

我想尝试从 blob 存储中获取文件。我成功地从没有子目录的 blob 存储中获取了数据,但是当我尝试从子目录内部获取文件时,它不起作用。在子目录情况下,我使用 $blobName 就像 test/1.png 其中 test 是文件夹名称和 1.jpg 文件名。

<?php

$storageAccount = 'XXXXXXX';
$containerName = 'XXXXXXXX';
$blobName = 'test/1.png';
$account_key = 'XXXXXXXXXX';

$date = gmdate('D, d M Y H:i:s \G\M\T');
$version = "2019-12-12";

$stringtosign = "GET\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:". $date . "\nx-ms-version:".$version."\n/".$storageAccount."/".$containerName."/".$blobName;
$signature = 'SharedKey'.' '.$storageAccount.':'.base64_encode(hash_hmac('sha256', $stringtosign, base64_decode($account_key), true));
echo "\n\n" . $signature;

$header = array (
"x-ms-date: " . $date,
"x-ms-version: " . $version,
"Authorization: " . $signature
);

$url="https://$storageAccount.blob.core.windows.net/$containerName/$blobName";
$ch = curl_init ();
curl_setopt ( $ch, CURLOPT_URL, $url );
curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );
curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, 'GET' );
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt ( $ch, CURLOPT_HTTPHEADER, $header);
curl_exec ( $ch );
$result = curl_exec($ch);
echo "\n\n" . $result;

if(curl_errno($ch)){
throw new Exception(curl_error($ch));
}

file_put_contents('D://demo//downloaded.txt', $result); // save the string to a file

curl_close($ch);

最佳答案

我已经在我这边测试了您的代码,但似乎您的代码没问题,我可以下载我的 .jpg 文件,该文件位于存储容器的某个子目录中: enter image description here

结果: enter image description here

我在您的代码中注意到,您正在将 .png 文件 内容下载到 .txt 文件 中:

file_put_contents('D://demo//downloaded.txt', $result);

也许这就是您没有得到异常结果的原因。

关于php - 使用 php 从子目录中获取 azure blob 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65072219/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com