我正在使用 PEAR S3 包,我想设置 $useSSL = true。我避免编辑实际的包,尽管我可以。
$s3->useSSL->真;pr $s3->useSSL(true); 不工作。
S3.php:http ://pastebin.com/4sZ19mR4 191行
我的示例代码:
require_once 'Services/Amazon/S3.php';
$key = 'xxx';
$secret = 'xxx';
$bucket = 'flyers';
$s3 = Services_Amazon_S3::getAccount($key, $secret);
$s3->useSSL->true;
print $s3->getURL();
$bucket = $s3->getBucket($bucket);