获取对象元数据

本SDK提供HeadObject类用于获取对象元数据。具体内容详见 官方文档

参数说明

  • Bucket: 文件所在的存储空间
  • Key: 文件在存储空间内的名称

示例

执行该示例前请确保配置文件的正确性
以下代码段需要在上下文中运行

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// 初始化客户端
try {
    $s3Client = new S3Client([
        'endpoint' => $endpoint,
        'region' => $region,
        'signature_version' => $signatureVersion,
        'force_path_style' => $forcePathStyle,
        'credentials' => [
            'key' => $accessKey,
            'secret' => $secretKey,
        ],
    ]);
    echo "Client initialized successfully!" . PHP_EOL;
} catch (InvalidArgumentException $e) {
    die("Failed to initialize Client: " . $e->getMessage());
}

try {
    // 获取对象元数据
    $result = $s3Client->headObject([
        'Bucket' => $bucketName,
        'Key' => $keyName,
    ]);

    // 输出元数据
    echo "Object attributes:" . PHP_EOL;
    echo " - Size: " . $result['ContentLength'] . " bytes" . PHP_EOL;
    echo " - Last Modified: " . $result['LastModified']->format(DateTime::RFC3339) . PHP_EOL;
    echo " - ETag: " . $result['ETag'] . PHP_EOL;
    echo " - Content Type: " . $result['ContentType'] . PHP_EOL;
    // 可以根据需要添加更多元数据
} catch (AwsException $e) {
    echo "Error getting object attributes: " . $e->getMessage() . PHP_EOL;
}