我成功地使用以下代码将文件写入 S3:
<?php
require_once 'S3.php';
// Instantiate the class
$s3 = new S3('AKIAJNIMGH2SZ5YRGTTA', 'dpIf3P7YsW38IosMTzX30KkMfTE7zkX77wuuIRzk', true, 's3-ap-southeast-1.amazonaws.com');
// dirname(__FILE__).'/S3.php' - this is the full server path to the file
$s3->putObjectFile(dirname(__FILE__).'/S3.php', 'dating-images.goneglobal.com', '1000089762/new-file-user.jpg', S3::ACL_PUBLIC_READ);
?>
我注意到元数据默认为“文本/纯文本”。如何通过 php 脚本将其更新为“image/jpeg”?例如:我可以在上面的代码中添加一个属性还是额外的一行?
谢谢