本文整理汇总了PHP中AmazonS3::stringToSign方法的典型用法代码示例。如果您正苦于以下问题:PHP AmazonS3::stringToSign方法的具体用法?PHP AmazonS3::stringToSign怎么用?PHP AmazonS3::stringToSign使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AmazonS3
的用法示例。
在下文中一共展示了AmazonS3::stringToSign方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testStringToSignPutPngAdditionalHeaders
/**
* testStringToSignPutPngAdditionalHeaders
*
* @return void
* @author Rob Mcvey
**/
public function testStringToSignPutPngAdditionalHeaders()
{
$file_path = APP . 'Plugin' . DS . 'AmazonS3' . DS . 'Test' . DS . 'test_app' . DS . 'webroot' . DS . 'files' . DS . 'avatars' . DS . 'copify.png';
$this->AmazonS3->localPath = $file_path;
$this->AmazonS3->file = basename($file_path);
$this->AmazonS3->setDate('Sun, 22 Sep 2013 14:43:04 GMT');
$this->AmazonS3->amazonHeaders = array('x-amz-acl' => 'public-read', 'X-Amz-Meta-ReviewedBy' => 'john.doe@yahoo.biz');
$expected = "PUT" . "\n";
$expected .= "aUIOL+kLNYqj1ZPXnf8+yw==" . "\n";
$expected .= "image/png" . "\n";
$expected .= "Sun, 22 Sep 2013 14:43:04 GMT";
$expected .= "\n";
$expected .= "x-amz-acl:public-read" . "\n";
$expected .= "x-amz-meta-reviewedby:john.doe@yahoo.biz" . "\n";
$expected .= "/bucket/copify.png";
$result = $this->AmazonS3->stringToSign('put');
$this->assertEqual($expected, $result);
}