本文整理汇总了PHP中Zend_Service_Amazon_Abstract::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Service_Amazon_Abstract::__construct方法的具体用法?PHP Zend_Service_Amazon_Abstract::__construct怎么用?PHP Zend_Service_Amazon_Abstract::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Service_Amazon_Abstract
的用法示例。
在下文中一共展示了Zend_Service_Amazon_Abstract::__construct方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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);
}
}
示例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);
}
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}
示例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);
}