2017 © Pedro Peláez
 

library sdk

image

upyun/sdk

  • Thursday, April 5, 2018
  • by leo2018
  • Repository
  • 21 Watchers
  • 127 Stars
  • 17,894 Installations
  • PHP
  • 13 Dependents
  • 0 Suggesters
  • 55 Forks
  • 0 Open issues
  • 21 Versions
  • 19 % Grown

The README.md

又拍云 SDK for PHPer

Build Status Scrutinizer Code Quality Code Coverage, (*1)

又拍云 PHP SDK,封装了又拍云功能丰富的开放 API ,帮助开发者快速对接文件云端存储、图片音视频云处理、智能鉴黄等功能, (*2)

, (*3)

功能列表

SDK 包含如下功能, (*4)

功能列表中的异步操作,均可以设置异步回调通知地址,接收异步处理结果 如果需要测试回调功能,可以通过又拍云回调服务创建一个临时回调地址, (*5)

, (*6)

使用说明

, (*7)

安装

PHP >= 5.5

1.使用 composer 安装, (*8)

推荐使用该方法安装,成为优雅的 PHPer :fire:, (*9)

建议使用速度很快的国内全量镜像(又拍云赞助), (*10)

composer require upyun/sdk

2.如果不适应 composer 管理,可以直接下载压缩包(注意需要下载 php-sdk-版本号.zip 格式的 zip 压缩包,不是 Source code 源码压缩包),解压后,项目中添加如下代码:, (*11)

require_once '/path/to/php-sdk/vendor/autoload.php';

, (*12)

文档

详细文档见 doc.md, (*13)

, (*14)

示例

先初始化又拍云服务配置:, (*15)

require_once('vendor/autoload.php'); // 只针对使用 composer 安装
// require_once '/path/to/php-sdk/vendor/autoload.php'; // 针对压缩包安装

use Upyun\Upyun;
use Upyun\Config;
$serviceConfig = new Config('yourServiceName', 'yourOperatorName', 'yourOperatorPwd');
$client = new Upyun($serviceConfig);

字符串写入又拍云服务器

$client->write('/save/path', 'file content');

文件流写入又拍云服务器

$file = fopen('/local/path/file', 'r');
$client->write('/save/path', $file);

使用并行式断点续传上传文件

$serviceConfig->setUploadType('BLOCK_PARALLEL');
$client = new Upyun($serviceConfig);
$file = fopen('/local/path/file', 'r');
$client->write('/save/path', $file);

上传图片并转换格式为 png,详见上传作图

$file = fopen('/local/path/image.jpg', 'r');
$client->write('/save/image.png', $file, array('x-gmkerl-thumb' => '/format/png'));

下载文件并保存到本地

$saveLocal = fopen('/local/path/image.jpg', 'w');
// 第二个参数不传时,read 方法将直接返回文件内容
$client->read('/remote/server/image.png', $saveLocal);

, (*16)

贡献代码

  1. Fork
  2. 为新特性创建一个新的分支
  3. 发送一个 pull request 到 master 分支

, (*17)

社区

, (*18)

许可证

UPYUN PHP-SDK 基于 MIT 开源协议, (*19)

http://www.opensource.org/licenses/MIT, (*20)

The Versions

05/04 2018

2.0.0

2.0.0.0

  Sources   Download

04/12 2017

dev-master

9999999-dev https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

12/11 2017

3.3.0

3.3.0.0 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

12/11 2017

dev-sync-video

dev-sync-video https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

27/10 2017

3.2.0

3.2.0.0 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

27/10 2017

dev-process

dev-process https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

15/08 2017

3.1.0

3.1.0.0 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

09/08 2017

dev-feature/rename-bucket

dev-feature/rename-bucket https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

02/08 2017

3.0.2

3.0.2.0 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

02/08 2017

dev-hotfix/process

dev-hotfix/process https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

05/05 2017

3.0.1

3.0.1.0 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

05/05 2017

dev-feature/mimetype

dev-feature/mimetype https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

10/04 2017

3.0.0

3.0.0.0 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

23/02 2017

dev-feature/refactor-api

dev-feature/refactor-api https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

16/02 2017

3.0.0-RC5

3.0.0.0-RC5 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

10/02 2017

3.0.0-RC4

3.0.0.0-RC4 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

20/01 2017

3.0.0-RC3

3.0.0.0-RC3 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

25/12 2016

3.0.0-RC2

3.0.0.0-RC2 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

21/12 2016

3.0.0-RC1

3.0.0.0-RC1 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

14/12 2016

2.2.1

2.2.1.0 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-curl *

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun

14/05 2016

2.2.0

2.2.0.0 https://github.com/upyun/php-sdk/

UPYUN sdk for php

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-curl *

 

The Development Requires

by Avatar sabakugaara
by totoleo
by lfeng
by lvtongda

sdk upyun