PEAR S3 パッケージを使用しており、$useSSL = true に設定したいと考えています。できますが、実際のパッケージを編集することは避けています。
$s3->useSSL->true; pr $s3->useSSL(真); 働かないでください。
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);