Slide 5
Slide 5 text
class SampleAws {
// Amazon SDKのインスタンス
private $obj = null;
/**
* AWS にアクセスする際の鍵
* @return {object} instance
*/
public function getInstance() {
if (is_null($this->obj)) {
$this->obj = Aws::factory(array(
'key' => 'XXXXXXXXXXXXX',
'secret' => 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
'region' => 'ap-northeast-1'
))->get('s3');
}
return $this->obj;
}
/**
* s3に画像を保存
* @return {object} EndpointArns 全てのエンドポイント
*/
public function putObjectTest($tempFileName){
$this->getInstance()->putObject(array(
'Bucket' => 'jaxx2104',
'Key' => $tempFileName,
TBNQMF
1311݄29༵ۚ