Download the PHP package threebenji/wcs-sdk-php without Composer

On this page you can find all versions of the php package threebenji/wcs-sdk-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package wcs-sdk-php

wcs-php-sdk

PHP SDK基于网宿云存储API规范构建,适用于大于5.4版本的PHP。 config修改版本

安装

1.通过composer管理项目依赖

2.手动下载 PHP SDK开发包:wcs-php-sdk下载链接

然后导入vendor目录下的autoload.php

require_once __DIR__ . '/vendor/autoload.php';

使用指南

配置信息

用户接入网宿云存储时,需要使用一对有效的AK和SK进行签名认证,并填写“上传域名”和“管理域名”等信息进行文件操作。配置信息只需要在整个应用程序中初始化一次即可,具体操作如下:

在获取到AK和SK等信息之后,您可以按照如下方式进行密钥初始化:

/*Config.php*/
//相关url设置
$WCS_PUT_URL    = 'your uploadDomain';
$WCS_GET_URL    = 'your downloadDomain';
$WCS_MGR_URL    = 'your mgrDomain';

//access key 和 secret key 设置
$WCS_ACCESS_KEY = 'your access key';
$WCS_SECRET_KEY = 'your secrete key';

//token的deadline,默认是1小时,也就是3600s
const  WCS_TOKEN_DEADLINE = 3600;

//上传文件设置
const WCS_OVERWRITE = 0; //默认文件不覆盖

//超时时间
const WCS_TIMEOUT = 20;

//分片上传参数设置
const WCS_BLOCK_SIZE = 4 * 1024 * 1024; //默认块大小4M
const WCS_CHUNK_SIZE = 256 * 1024; //默认片大小256K
const WCS_RECORD_URL = './'; //默认当前文件目录
const WCS_COUNT_FOR_RETRY = 3;  //超时重试次数

使用范例

/*example.php*/

//上传文件例子:
<?php

    //引入自动加载文件和命名空间,上传类的命名空间为Wcs\Upload, Uploader类为上传类
    require '../vendor/autoload.php';
    use Wcs\Upload\Uploader;
    use Wcs\Http\PutPolicy;

    //请先填入相关参数
    //关于参数的详细说明,请参见wcs文档
    $userParam = '';
    $userVars = '';
    $mimeType = '';
    $bucketName = '';
    $fileKey = '';
    $localFile = '';

    $pp = new PutPolicy();
    if ($fileKey == null || $fileKey === '') {
        $pp->scope = $bucketName;
    } else {
        $pp->scope = $bucketName . ':' . $fileKey;
    }
    $pp->deadline = '1483027200000';
    $token = $pp->get_token();
    //实例化一个Uploader类
    $client = new Uploader($token, $userParam, $userVars, $mimeType);/*传入可选参数*/

    //普通上传函数
    $client->upload_return($bucketName, $fileKey, $localFile, $returnBody);

文件上传

<1>若文件大小超过20M,建议使用分片上传 <2>云存储提供的上传域名为普通域名,若对上传速度较为敏感,有要求的客户建议采用网宿上传加速服务。 普通上传、回调上传、通知上传均是一次性上传,上传进度默认保存在当前路径(脚本执行的目录) >1. 以`.文件名.prs`的格式保存 >2. 以json格式保存进度信息:`{"progress":"50"}` >3. 客户可自行根据需要读取该信息 1.普通上传(POST方式) 用户在上传文件后,上传返回结果由云存储平台统一控制。 **范例:** //bucketName 空间名称 //fileKey 自定义文件名 //localFile 上传文件名 //returnBody 自定义返回内容 (可选) //userParam 自定义变量名 (可选) //userVars 自定义变量值 (可选) //mimeType 自定义上传类型 (可选) require '../vendor/autoload.php'; use Wcs\Upload\Uploader; use Wcs\Http\PutPolicy; $pp = new PutPolicy(); if ($fileKey == null || $fileKey === '') { $pp->scope = $bucketName; } else { $pp->scope = $bucketName . ':' . $fileKey; } $pp->returnBody = ''; $pp->deadline = '';//单位为毫秒 $token = $pp->get_token(); $client = new Uploader($token, $userParam, $userVars, $mimeType); $resp = $client->upload_return($localFile); print_r($resp); **命令行测试** $ php file_upload_return.php [-h | --help] -b -f -l [-r ] [-u ] [-v ] [-m ] ##### 比如: $ php file_upload_return.php -b test -f test.png -l test.png -r {test} 2.回调上传(POST方式) 用户上传文件后,对返回给客户端的信息进行自定义格式。 使用该上传模式需要启用上传策略数据的callbackUrl参数,而callbackBody参数可选(建议使用该参数)。 *注意:returnUrl和callbackUrl不能同时指定。* * 如果指定了callbackBody参数,云存储将向callbackUrl指定的业务服务器地址发起一个HTTP回调请求。业务服务器根据回调内容完成业务处理,在HTTP Response中自定义的响应内容,网宿云存储接收该响应后,将反馈的数据发送给客户端。 * 如果不指定callbackBody参数,云存储将返回空串给客户端。 **范例:** //bucketName 空间名称 //fileKey 自定义文件名 //localFile 上传文件名 //callbackUrl 回调url //callbackBody 回调内容 (可选) require '../vendor/autoload.php'; use Wcs\Upload\Uploader; use Wcs\Http\PutPolicy; $pp = new PutPolicy(); if ($fileKey == null || $fileKey === '') { $pp->scope = $bucketName; } else { $pp->scope = $bucketName . ':' . $fileKey; } $pp->deadline = '1483027200000'; $pp->callbackUrl = $callbackUrl; $pp->callbackBody = $callbackBody; $token = $pp->get_token(); $client = new Uploader($token, $userParam, $userVars, $mimeType); $resp = $client->upload_return( $localFile); print_r($resp); **命令行测试** $ php file_upload_callback.php [-h | --help] -b -f -l -c [-r ] [-u ] [-v ] [-m ] 3.通知上传(POST方式) 用户在上传文件的同时,提交文件处理指令,请求网宿云存储平台对上传的文件进行处理。由于处理操作较耗时,为了不影响客户端的体验,网宿云存储平台采用异步处理策略,处理完成后将结果自动通知客户服务端。 使用该上传模式需要启用上传策略数据的persistentOps参数和persistentNotifyUrl参数。 **范例** //bucketName 空间名称 //fileKey 自定义文件名 //localFile 上传文件名 //notifyUrl 获取处理结果的url //cmd 处理命令,详细见wcs的文档 require '../vendor/autoload.php'; use Wcs\Upload\Uploader; use Wcs\Http\PutPolicy; $pp = new PutPolicy(); if ($fileKey == null || $fileKey === '') { $pp->scope = $bucketName; } else { $pp->scope = $bucketName . ':' . $fileKey; } $pp->deadline = '1483027200000'; $pp->persistentOps = $cmd; $pp->persistentNotifyUrl = $notifyUrl; $pp->returnBody = $returnBody; $token = $pp->get_token(); $client = new Uploader($token, $userParam, $userVars, $mimeType); $resp = $client->upload_return($localFile); print_r($resp); **命名行测试** $ php file_upload_notify.php [-h | --help] -b -f -l -n -c [-u ] [-v ] [-m ] 4.分片上传(POST方式) 分片上传当前PHP版本不支持并发上传,分片上传大致流程如下: - mkblk(每一块上传前必须先mkblk操作,服务器返回第一片ctx) - bput(mkblk之后进行bput操作,上传每一片附带上一片的ctx并返回当前的ctx) - mkfile(当文件上传完毕,进行mkfile操作,附带每一块的最有一片ctx信息) *注意: 1. 分片上传默认在请求超时情况下会自动重传,其他情况下(状态码非28)报错退出,并将错误信息保存在当前目录的`.文件名.log`的隐藏文件下。 2. 上传中断后,上传信息保存在隐藏文件`.文件名.rcd`下,每一条记录为片上传的信息,断点续传会从记录的最后一条信息分析当前上传的状态,并进行后续上传。上传成功后,会删除该记录文件。 3. 断点续传,只需要重新执行一次分片上传操作。 4. 分片上传只在块内作并发,而且是异步回调并发而非多线程并发,考虑到php对多线程操作的支持不是很好,因此采用异步回调的机制,用guzzlehttp实现。 5. 默认块的大小是4M,片的大小256K,这样的目的是为了更稳定的上传,若客户觉得上传速度过慢,想要提高上传速度,只需调整块或片的大小,这样能提升上传的速度(相对来说,上传稳定性可能会降低) 6. 由于有超时重传策略(默认重传3次)来保证传输的可靠性,因此客户如果希望提高上传速度,可将片的大小改为块的大小,保证最大并发数,提高上传速度。 7. 分片上传进度信息在`.文件名.rcd`下面,以json的格式保存。每上传一片都会写入一条json记录,进度信息保存在`$json['info']['progress']`这个字段里,客户可根据需要处理该进度信息。 8. 上传成功将删除 `.文件名.rcd`文件和`.文件名.log`文件. 文件`.文件名.rcd`字段说明: { "info": { "sizeofUploaded": "已经上传的文件大小", "sizeOfFile": "文件大小", "progress": "上传的进度", "uuid": "上传的uuid", "token": "上传的token", "time": "token生成的时间,用于检验token超时", "ctxList": "mkfile需要的ctxlist" }, "0": { "success": "当前块是否已经上传成功", "blockSize": "块的大小", "curChunkSize": "当前片的大小", "chuckNum": "当前块中片的数量", "chunk": "已经上传的片数", "uploaded": "块已经上传的大小", "latestCtx": "最新的ctx的值", "retry": "超时需要重试的次数" }, "1": { ... } ... } **变量说明** //基本信息 private $blockSize; private $chunkSize; private $countForRetry; private $timeoutForRetry; //用户自定义信息 private $userParam; private $encodedUserVars; private $mimeType; //uuid随机数用 php 的uniqid() private $uuid; //断点续传记录文件 private $recordFile; //断点续传信息 private $localFile; private $blockNumOfUploaded; //已经上传的块数量 private $chunkNumOfUploaded; //当前块已经上传的片数量 private $ctxListForMkfile; //mkfile操作需要的每一块最后一片ctx private $sizeOfFile; //文件大小 private $sizeOfUploaded; //已经上传的文件大小 private $latestChunkCtx; //最新的ctx private $time; //token生成的时间,用来检验token是否失效 **范例** //bucketName 空间名称 //fileKey 自定义文件名 //localFile 上传文件名 require '../vendor/autoload.php'; use Wcs\Upload\ResumeUploader; use Wcs\Http\PutPolicy; $pp = new PutPolicy(); if ($fileKey == null || $fileKey === '') { $pp->scope = $bucketName; } else { $pp->scope = $bucketName . ':' . $fileKey; } $pp->deadline = '1483027200000'; $pp->persistentOps = $cmd; $pp->persistentNotifyUrl = $notifyUrl; $pp->returnBody = $returnBody; $token = $pp->get_token(); $client = new ResumeUploader($token, $userParam, $encodeUserVars, $mimeType); $client->upload($localFile); **命令行测试** $ php file_upload_resume.php [-h | --help] -b -f -l [-u ] [-v ] [-m ] 分片上传成功返回结果 {"key":"test0.mp4","hash":"lrV8ZZRKgjHAE0JX6Y8iXxU3x0eJ"} 请求失败 { "code": "", "message": "" } #### 资源管理 提供对文件的基本操作 1. 删除文件 **范例** require '../vendor/autoload.php'; use Wcs\SrcManage\FileManager; use Wcs\MgrAuth; use Wcs\Config; $ak = Config::WCS_ACCESS_KEY $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new FileManager($auth); print_r($client->delete($bucketName, $fileKey)); **命令行测试** $ php file_delete.php [-h | --help] -b -f 2. 获取文件信息 **范例** require '../vendor/autoload.php'; use Wcs\SrcManage\FileManager; use Wcs\MgrAuth; use Wcs\Config; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new FileManager($auth); print_r($client->stat($bucketName, $fileKey)); **命令行测试** $ php file_stat.php [-h | --help] -b -f 3. 列举资源 **范例** require '../vendor/autoload.php'; use Wcs\SrcManage\FileManager; use Wcs\MgrAuth; use Wcs\Config; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new FileManager($auth); print_r($client->bucketList($bucketName, $limit, $prefix, $mode, $marker)); **命令行测试** $ php file_download.php [-h | --help] -b [-l ] [-p ] [-m ] [--ma ] 4. 更新镜像资源 **范例** require '../vendor/autoload.php'; use Wcs\SrcManage\FileManager; use Wcs\MgrAuth; use Wcs\Config; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); //fileKeys = "||"; $client = new FileManager($auth); print_r($client->updateMirrorSrc($bucketName, $fileKeys)); **命令行测试** $ php file_stat.php [-h | --help] -b -f [||...] 5. 移动资源 **范例** require '../vendor/autoload.php'; use Wcs\SrcManage\FileManager; use Wcs\MgrAuth; use Wcs\Config; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new FileManager($auth); print_r($client->move($bucketSrc, $keySrc, $bucketDst, $keyDst)); **命令行测试** $ php file_move.php [-h | --help] --bs --ks --bd --kd 6. 复制资源 **范例** require '../vendor/autoload.php'; use Wcs\SrcManage\FileManager; use Wcs\MgrAuth; use Wcs\Config; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new FileManager($auth); print_r($client->copy($bucketSrc, $keySrc, $bucketDst, $keyDst)); **命令行测试** $ php file_copy.php [-h | --help] --bs --ks --bd --kd 7. 获取音视频元数据 **范例** require '../vendor/autoload.php'; use Wcs\SrcManage\FileManager; use Wcs\MgrAuth; use Wcs\Config; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new FileManager($auth); print_r($client->avInfo($key)); **命令行测试** php avinfo.php [-h | --help] -k 8. 获取音视频简单元数据 **范例** require '../vendor/autoload.php'; use Wcs\SrcManage\FileManager; use Wcs\MgrAuth; use Wcs\Config; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new FileManager($auth); print_r($client->avInfo2($key)); 9.设置文件保存期限 范例: require '../../vendor/autoload.php'; use Wcs\SrcManage\FileManager; use Wcs\MgrAuth; use Wcs\Config; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new FileManager($auth); print_r($client->setDeadline($bucketName, $fileKey, $deadline)); 命令行测试 $ php file_setDeadLine.php [-h | --help] -b -f -d **命令行测试** $ php avinfo2.php [-h | --help] -k #### 图片处理 图片处理的相关接口,主要有 1.图片缩放 2.图片水印 3.文字水印 4.高级图片处理 6.获取图片基本信息 7.获取图片EXIF信息 #### 1. 图片缩放 require '../../vendor/autoload.php'; use Wcs\ImageProcess\ImageView; $mode = 1; $client = new ImageView($mode); //可选参数 //$client->quality = ''; //$client->format = ''; //$client->width = 200; //$client->height = 200; print_r($client->exec($bucketName, $fileName)); #### 2. 图片水印 require '../vendor/autoload.php'; use Wcs\ImageProcess\ImageWatermark; //自定义参数 //$mode = 1; $client = new ImageWatermark($mode); //可选参数 //$client->width = 200; //$client->height = 200; //$client->image = ''; //$client->dx = ''; //$client->dy = ''; //$client->gravity = ''; //$client->dissolve = ''; print_r($client->exec($bucketName, $fileName, $localFile)); #### 3. 文字水印 require '../vendor/autoload.php'; use Wcs\ImageProcess\ImageWatermark; //自定义参数 //$mode = 2; //$text = 'test'; $client = new ImageWatermark($mode, $text); // 可选参数 //$client->dissolve = ''; //$client->font = ''; //$client->fontsize = 16; //$client->image = ''; //$client->dx = ''; //$client->dy = ''; //$client->gravity = ''; print_r($client->exec($bucketName, $fileName, $localFile)); #### 4. 高级图片处理 require '../../vendor/autoload.php'; use Wcs\ImageProcess\ImageMogr; $client = new ImageMogr(); //可选参数,详见wcs api的文档说明 $client->thumbnail = '!10p'; print_r($client->exec($bucketName, $fileName)); #### 5. 获取图片基本信息 require '../../vendor/autoload.php'; use Wcs\ImageProcess\ImageInfo; $client = new ImageInfo(); print_r($client->imgInfo($bucketName, $fileName)); #### 6. 获取图片EXIF信息 require '../../vendor/autoload.php'; use Wcs\ImageProcess\ImageInfo; $client = new ImageInfo(); print_r($client->imageEXIF($bucketName, $fileName)); #### 音视频操作 ##### 1. fops操作 require '../../vendor/autoload.php'; use Wcs\PersistentFops\Fops; use Wcs\Config; use Wcs\MgrAuth; //$fops的格式,不同的音视频操作对应不同的fops格式,详细见wcs api 文档 $bucket = ''; $key = ''; //参数设置 $notifyURL = ''; $force = 0; $separate = 0; $fops = ''; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new Fops($auth, $bucket); print_r($client->exec($fops, $key, $notifyURL, $force, $separate)); ##### 2. fops查询 require '../../vendor/autoload.php'; use Wcs\PersistentFops\Fops; print_r(Fops::status($persisetntId)); #### 高级资源管理 支持对文件进行异步资源管理操作 1.抓取资源 2.复制资源 3.移动资源 4.删除资源 5.按前缀删除资源 6.fmgr任务查询 ##### 1. 抓取资源 require '../../vendor/autoload.php'; use Wcs\Fmgr\Fmgr; use Wcs\Config; use Wcs\MgrAuth; use Wcs\Utils; //可选参数 $notifyURL = ''; $force = 0; $separate = 0; //fops参数 $fetchURL = Utils::url_safe_base64_encode('https://www.baidu.com/img/bd_logo1.png'); $bucket = Utils::url_safe_base64_encode(''); $key = Utils::url_safe_base64_encode(''); $prefix = Utils::url_safe_base64_encode(''); $fops = 'fops=fetchURL/'.$fetchURL.'/bucket/'.$bucket.'/key/'.$key.'/prefix/'.$prefix.'¬ifyURL='.Utils::url_safe_base64_encode($notifyURL).'&force='.$force.'&separate='.$separate; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new Fmgr($auth, $notifyURL, $force, $separate); print_r($client->fetch($fops)); ##### 2. 复制资源 // 请先填写相关字段,$fops字段格式详见wcs api 文档 require '../../vendor/autoload.php'; use Wcs\Fmgr\Fmgr; use Wcs\Config; use Wcs\MgrAuth; use Wcs\Utils; //可选参数 $notifyURL = ''; $force = 0; $separate = 0; //fops参数 $resource = Utils::url_safe_base64_encode(''); $bucket = Utils::url_safe_base64_encode(''); $key = Utils::url_safe_base64_encode(''); $prefix = Utils::url_safe_base64_encode(''); $fops = 'fops=resource/'.$resource.'/bucket/'.$bucket.'/key/'.$key.'/prefix/'.$prefix.'¬ifyURL='.Utils::url_safe_base64_encode($notifyURL).'&force='.$force.'&separate='.$separate; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new Fmgr($auth, $notifyURL, $force, $separate); print_r($client->copy($fops)); ##### 3. 移动资源 // 请先填写相关字段,$fops字段格式详见wcs api 文档 require '../../vendor/autoload.php'; use Wcs\Fmgr\Fmgr; use Wcs\Config; use Wcs\MgrAuth; use Wcs\Utils; //可选参数 $notifyURL = ''; $force = 0; $separate = 0; //fops参数 $resource = Utils::url_safe_base64_encode(''); $bucket = Utils::url_safe_base64_encode(''); $key = Utils::url_safe_base64_encode(''); $prefix = Utils::url_safe_base64_encode(''); $fops = 'fops=resource/'.$resource.'/bucket/'.$bucket.'/key/'.$key.'/prefix/'.$prefix.'¬ifyURL='.Utils::url_safe_base64_encode($notifyURL).'&force='.$force.'&separate='.$separate; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new Fmgr($auth, $notifyURL, $force, $separate); print_r($client->move($fops)); ##### 4. 删除资源 // 请先填写相关字段,$fops字段格式详见wcs api 文档 require '../../vendor/autoload.php'; use Wcs\Fmgr\Fmgr; use Wcs\Config; use Wcs\MgrAuth; use Wcs\Utils; //可选参数 $notifyURL = ''; $force = 0; $separate = 0; //fops参数 $bucket = Utils::url_safe_base64_encode(''); $key = Utils::url_safe_base64_encode(''); $fops = 'fops=bucket/'.$bucket.'/key/'.$key.'¬ifyURL='.Utils::url_safe_base64_encode($notifyURL).'&force='.$force.'&separate='.$separate; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new Fmgr($auth, $notifyURL, $force, $separate); print_r($client->delete($fops)); ##### 5. 按前缀删除资源 // 请先填写相关字段,$fops字段格式详见wcs api 文档 require '../../vendor/autoload.php'; use Wcs\Fmgr\Fmgr; use Wcs\Config; use Wcs\MgrAuth; use Wcs\Utils; //可选参数 $notifyURL = ''; $force = 0; $separate = 0; //fops参数 $bucket = Utils::url_safe_base64_encode(''); $prefix = Utils::url_safe_base64_encode(''); $output = Utils::url_safe_base64_encode(''); $fops = 'fops=bucket/'.$bucket.'/prefix/'.$prefix.'¬ifyURL='.Utils::url_safe_base64_encode($notifyURL).'&force='.$force.'&separate='.$separate; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new Fmgr($auth, $notifyURL, $force, $separate); print_r($client->deletePrefix($fops)); ##### 6. fmgr任务查询 // 请先填写相关字段,$fops字段格式详见wcs api 文档 require '../../vendor/autoload.php'; use Wcs\Fmgr\Fmgr; use Wcs\Config; use Wcs\MgrAuth; //可选参数 $notifyURL = ''; $force = 0; $separate = 0; $ak = Config::WCS_ACCESS_KEY; $sk = Config::WCS_SECRET_KEY; $auth = new MgrAuth($ak, $sk); $client = new Fmgr($auth, $notifyURL, $force, $separate); print_r($client->status("")); [1]: https://wcsd.chinanetcenter.com/sdk/cnc-php-sdk-wcs.zip

All versions of wcs-sdk-php with dependencies

PHP Build Version
Package Version
Requires guzzlehttp/guzzle Version ^6.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package threebenji/wcs-sdk-php contains the following files

Loading the files please wait ....