如何使用 php 中的 setBlobProperties 来设置 ContentType?下面的代码是我通过谷歌找到的,但那个代码不起作用。视频确实出现在 blob 存储中,但内容类型设置为:application/octet-stream。此外,语言未设置为“nl-BE”,但显示为“空”。
$storageClient->putLargeBlob($_POST['container'], $_POST['filename'], $tempFile);
$storageClient->setBlobProperties($_POST['container'], $_POST['filename'], null, array(
'x-ms-blob-content-language' => 'nl-BE',
'x-ms-blob-content-type' => 'video/mp4'
));