本文整理汇总了PHP中Zend_Service_Amazon_Abstract类的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Service_Amazon_Abstract类的具体用法?PHP Zend_Service_Amazon_Abstract怎么用?PHP Zend_Service_Amazon_Abstract使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Zend_Service_Amazon_Abstract类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* Constructor
*
* The default region is us-east-1. Use the region to set it to one of the regions that is build-in into ZF.
* To add a new AWS region use the setEndpoint() method.
*
* @param string $accessKey
* @param string $secretKey
* @param string $region
*/
public function __construct($accessKey = null, $secretKey = null, $region = null)
{
parent::__construct($accessKey, $secretKey, $region);
if (null !== $region) {
$this->_setEndpoint($region);
}
}
开发者ID:yonetici,项目名称:pimcore-coreshop-demo,代码行数:17,代码来源:Sqs.php
示例2: __construct
/**
* Create Amazon SES client.
*
* @param string $access_key (Optional) Override the default Access Key
* @param string $secret_key (Optional) Override the default Secret Key
* @param Zend_Uri_Http $endpoint Endpoint (Optional) Endpoint Url
* @return void
*/
public function __construct($accessKey = null, $secretKey = null, Zend_Uri_Http $endpoint = null)
{
parent::__construct($accessKey, $secretKey);
if (!is_null($endpoint)) {
$this->setEndpoint($endpoint);
}
}
开发者ID:NicholasMiller,项目名称:Zend_Servce_Amazon_Ses,代码行数:15,代码来源:Ses.php
示例3: __construct
/**
* Create Amazon client.
*
* @param string $access_key Override the default Access Key
* @param string $secret_key Override the default Secret Key
* @param string $region Override the default Region
* @return void
*/
public function __construct($accessKey = null, $secretKey = null, $region = null)
{
$ini = Zend_Registry::get('config');
if (!$accessKey || !$secretKey) {
if (!$accessKey && isset($ini->amazon->ses->accessKey)) {
$accessKey = $ini->amazon->ses->accessKey;
}
if (!$secretKey && isset($ini->amazon->ses->secretKey)) {
$secretKey = $ini->amazon->ses->secretKey;
}
}
if (!$region) {
$region = isset($ini->amazon->ses->region) ? $ini->amazon->ses->region : self::DEFAULT_REGION;
}
$this->setRegion($region);
parent::__construct($accessKey, $secretKey);
}
开发者ID:grrr-amsterdam,项目名称:garp3,代码行数:25,代码来源:Ses.php
示例4: __construct
/**
* Constructor
*
* @param string $accessKey
* @param string $secretKey
* @param string $region
*/
public function __construct($accessKey = null, $secretKey = null, $region = null)
{
parent::__construct($accessKey, $secretKey, $region);
}
开发者ID:fredcido,项目名称:simuweb,代码行数:11,代码来源:Sqs.php
示例5: __construct
/**
* Create Amazon client.
*
* @param string $access_key Override the default Access Key
* @param string $secret_key Override the default Secret Key
* @param string $region Sets the AWS Region
* @return void
*/
public function __construct($accessKey = null, $secretKey = null, $region = null)
{
if (!$region) {
$region = self::$_defaultRegion;
} else {
// make rue the region is valid
if (!empty($region) && !in_array(strtolower($region), self::$_validEc2Regions, true)) {
require_once 'Zend/Service/Amazon/Exception.php';
throw new Zend_Service_Amazon_Exception('Invalid Amazon Ec2 Region');
}
}
$this->_region = $region;
parent::__construct($accessKey, $secretKey);
}
开发者ID:fredcido,项目名称:cenbrap,代码行数:22,代码来源:Abstract.php
示例6: __construct
/**
* Constructor
*
* @param string $accessKey
* @param string $secretKey
* @param string $region
*/
public function __construct($accessKey = null, $secretKey = null, $region = null)
{
parent::__construct($accessKey, $secretKey, $region);
$this->setEndpoint('http://' . self::S3_ENDPOINT);
}
开发者ID:hirentricore,项目名称:devmagento,代码行数:12,代码来源:S3.php
示例7: __construct
/**
* Create Amazon SimpleDB client.
*
* @param string $access_key Override the default Access Key
* @param string $secret_key Override the default Secret Key
* @param string $region Sets the AWS Region
* @return void
*/
public function __construct($accessKey, $secretKey)
{
parent::__construct($accessKey, $secretKey);
$this->setEndpoint("https://" . $this->_sdbEndpoint);
}
开发者ID:sepano,项目名称:open-social-media-monitoring,代码行数:13,代码来源:SimpleDb.php
示例8: setKeys
/**
* Set the keys to use when accessing SQS.
*
* @param string $access_key Set the default Access Key
* @param string $secret_key Set the default Secret Key
* @return void
*/
public static function setKeys($accessKey, $secretKey)
{
self::$_defaultAccessKey = $accessKey;
self::$_defaultSecretKey = $secretKey;
}
开发者ID:AholibamaSI,项目名称:plymouth-webapp,代码行数:12,代码来源:Abstract.php
示例9: setRegion
/**
* Set which region you are working in. It will append the
* end point automaticly
*
* @param string $region
*/
public static function setRegion($region)
{
if (in_array(strtolower($region), self::$_validEc2Regions, true)) {
self::$_defaultRegion = $region;
} else {
require_once 'Zend/Service/Amazon/Exception.php';
throw new Zend_Service_Amazon_Exception('Invalid Amazon Ec2 Region');
}
}
开发者ID:c12g,项目名称:stratos-php,代码行数:15,代码来源:Abstract.php
注:本文中的Zend_Service_Amazon_Abstract类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论