2017 © Pedro Peláez
 

library hehe-aliyun

阿里云SDK

image

cloudmario/hehe-aliyun

阿里云SDK

  • Thursday, January 14, 2016
  • by CloudSide
  • Repository
  • 1 Watchers
  • 0 Stars
  • 10 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

Aliyun-SDK

Latest Stable Version Latest Stable Version Total Downloads License, (*1)

Requirements

  • PHP >= 5.3.0

Introduction

use composer composer.json:, (*2)

"require": {
    "cloudmario/hehe-aliyun": "dev-master"
}

Usage

快速入门

初始化一个AliyunClient, (*3)

  1. 与阿里云SDK相关的文件都在aliyun文件夹下;
  2. AliyunClient是与API交互的接口,SDK的操作都是通过AliyunClient完成的;
  3. AliyunClient可以复用,建议设置成应用程序全局唯一的;
  4. 用户可以修改类AliyunClient里的变量 $connectTimeout和$readTimeout来设置SDK调用接口的连接超时时间和读取超时时间,SDK默认的连接超时时间是3秒,读取超时时间是80秒。
$c = new AliyunClient;
$c->accessKeyId = "<accessKeyId>";
$c->accessKeySecret = "<accessKeySecret>";
$c->serverUrl = "<serverUrl>";

//例如, 获取`云解析`的`records`
$req = new Dns20150109DescribeDomainRecordsRequest;
$req->setDomainName('hehe.com');
try {
    $resp = $c->execute($req);
    if ( $resp->DomainRecords ) {
        print_r($resp);
    } else {
        $code = $resp->Code;
        $message = $resp->Message;
        echo $code . " : " . $message;
    }
} catch (Exception $e) {
    print_r($e);
}

, (*4)

The Versions

14/01 2016

dev-master

9999999-dev https://github.com/CloudSide/hehe-aliyun

阿里云SDK

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cloud aliyun hehecloud

14/01 2016

1.0.3

1.0.3.0 https://github.com/CloudSide/hehe-aliyun

阿里云SDK

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cloud aliyun hehecloud

14/01 2016

1.0.2

1.0.2.0 https://github.com/CloudSide/hehe-aliyun

阿里云SDK

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cloud aliyun hehecloud

14/01 2016

1.0.1

1.0.1.0 https://github.com/CloudSide/aliyun

阿里云SDK

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cloud aliyun hehecloud

14/01 2016

1.0.0

1.0.0.0 https://github.com/CloudSide/aliyun

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

cloud aliyun hehecloud