七牛云存储非官方SDK,采用PSR规范,支持Composer安装
开发中...
添加 "qiniu/qiniu": "*"
到 composer.json
.
composer.phar install
require dirname(__DIR__) . '/vendor/autoload.php';
$client = \Qiniu\Qiniu::create(array(
'access_key' => '<!>',
'secret_key' => '<!>',
'bucket' => '<!>'
));
// 查看文件状态
$res = $client->stat('jobs.jpg');
print_r($res);
输出
Qiniu\Result Object
(
[error] =>
[data] => Array
(
[fsize] => 2425435
[hash] => Fqng6_0hUF8Q-POxmWNi8JD9VRmy
[mimeType] => image/jpeg
[putTime] => 13707100228731119
[url] => http://php-sdk.qiniudn.com/jobs.jpg
)
[debug] => Array
(
[log] => BDT;BDT;LBD
[id] => zxwAAMj4OP6_7yET
)
)
推荐用法
if ($res->ok()) {
// 成功上传或者操作
// 获取返回的数据
$data = $res->data; // Or $res->toArray()
//做一些事情
} else {
// 失败,获取失败信息
$res->error;
// 七牛的Debug头信息
$res->debug;
}
$res = $client->uploadFile('/home/hfcorriez/Code/jobs.jpg', 'jobs.jpg');
/*
$res->data:
Array
(
[key] => 4276
[hash] => FpLJ7yTujtJ85yU6QLA79ZaR3kKg
[url] => http://php-sdk.qiniudn.com/jobs.jpg
)
*/
$res = $client->upload('I am Qiniu SDK', 'readme.txt');
/*
$res->data:
Array
(
[key] => 4276
[hash] => FpLJ7yTujtJ85yU6QLA79ZaR3kKg
[url] => http://php-sdk.qiniudn.com/readme.txt
)
*/
// 查看文件状态
$res = $client->stat('jobs.jpg');
/*
$res->data:
[data] => Array
(
[fsize] => 2425435
[hash] => Fqng6_0hUF8Q-POxmWNi8JD9VRmy
[mimeType] => image/jpeg
[putTime] => 13787406554413228
[url] => http://php-sdk.qiniudn.com/jobs.jpg
)
*/
$res = $client->copy('jobs.jpg', 'jobs.jpg.new');
/*
$res->data:
[data] => Array
(
[url] => http://php-sdk.qiniudn.com/jobs.jpg.new
)
*/
$res = $client->move('jobs.jpg.new', 'jobs.jpg');
/*
$res->data:
[data] => Array
(
[url] => http://php-sdk.qiniudn.com/jobs.jpg
)
*/
$res = $client->delete('jobs.jpg');
/*
$res->data:
[data] => Array
(
[url] => http://php-sdk.qiniudn.com/jobs.jpg
)
*/
$res = $client->ls();
/*
$res->data:
Array
(
[items] => Array
(
[0] => Array
(
[fsize] => 2425435
[putTime] => 13787406554413228
[key] => jobs.jpg
[hash] => Fqng6_0hUF8Q-POxmWNi8JD9VRmy
[mimeType] => image/jpeg
)
)
)
*/
$res = $client->batch()
->stat('jobs.jpg')
->copy('jobs.jpg', 'jobs.jpg.new')
->move('jobs.jpg.new', 'jobs.jpg.old')
->delete('jobs.jpg.old')
->exec();
/*
$res:
Qiniu\Result Object
(
[error] =>
[data] => Array
(
[0] => Qiniu\Result Object
(
[error] =>
[data] => Array
(
[fsize] => 2425435
[hash] => Fqng6_0hUF8Q-POxmWNi8JD9VRmy
[mimeType] => image/jpeg
[putTime] => 13787430682676023
[url] => http://php-sdk.qiniudn.com/jobs.jpg
)
[response] =>
[debug] => Array
(
[log] => MQ;MC/404;RS.mcd
[id] => u00AAFaxXKXYfiIT
)
)
[1] => Qiniu\Result Object
(
[error] =>
[data] => Array
(
[url] => http://php-sdk.qiniudn.com/jobs.jpg
)
[response] =>
[debug] => Array
(
[log] => MQ;MC/404;RS.mcd
[id] => u00AAFaxXKXYfiIT
)
)
[2] => Qiniu\Result Object
(
[error] =>
[data] => Array
(
[url] => http://php-sdk.qiniudn.com/jobs.jpg.new
)
[response] =>
[debug] => Array
(
[log] => MQ;MC/404;RS.mcd
[id] => u00AAFaxXKXYfiIT
)
)
[3] => Qiniu\Result Object
(
[error] =>
[data] => Array
(
[url] => http://php-sdk.qiniudn.com/jobs.jpg.old
)
[response] =>
[debug] => Array
(
[log] => MQ;MC/404;RS.mcd
[id] => u00AAFaxXKXYfiIT
)
)
)
...
)
*/
查看图片的信息,信息参数介绍参见七牛官方文档
$res = $client->imageInfo('qn.jpeg');
/*
$res->data:
Array
(
[format] => jpeg
[width] => 640
[height] => 423
[colorModel] => ycbcr
)
*/
EXIF (Exchangeable image file format),是专门为数码相机的照片设定的可交换图像文件格式。详情参见EXIF
$res = $client->exif('qn.jpeg');
/*
$res->data:
Array
(
[ApertureValue] => Array
(
[val] => 2.53 EV (f/2.4)
[type] => 5
)
[BrightnessValue] => Array
(
[val] => 5.31 EV (135.85 cd/m^2)
[type] => 10
)
...
)
*/
参数列表请参照七牛官方文档
$url = $client->imageView('jobs.jpg', array("mode" => 1, "width" => 100, "height" => 100, "q" => 50, "format" => 'png'));
/*
$url:
http://php-sdk.qiniudn.com/jobs.jpg?imageView/1/w/100/h/100/q/50/format/png
*/
包括(缩略、裁剪、旋转、转化),参数列表请参照七牛官方文档
$res = $client->imageMogr('jobs.jpg', array(
"thumbnail" => '!50p',
"gravity" => 'NorthWest',
"quality" => 50,
"rotate" => -50,
"format" => 'gif'
));
/*
$url:
http://php-sdk.qiniudn.com/jobs.jpg?imageMogr/v2/auto-orient/thumbnail/!50p/gravity/NorthWest/quality/50/rotate/-50/format/gif
*/
(The MIT License)
Copyright (c) 2012 hfcorriez <hfcorriez@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.