qiniu / php-sdk
Qiniu Resource (Cloud) Storage SDK for PHP
Installs: 2 488 926
Dependents: 316
Suggesters: 4
Security: 0
Stars: 809
Watchers: 56
Forks: 429
Open Issues: 19
Requires
- php: >=5.3.3
- ext-curl: *
- ext-xml: *
- myclabs/php-enum: ~1.5.2 || ~1.6.6 || ~1.7.7 || ~1.8.4
Requires (Dev)
- paragonie/random_compat: >=2
- phpunit/phpunit: ^4.8 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4
- squizlabs/php_codesniffer: ^2.3 || ~3.6
- dev-master
- v7.14.0
- v7.13.0
- v7.12.1
- v7.12.0
- v7.11.0
- v7.10.1
- v7.10.0
- v7.9.0
- v7.8.0
- v7.7.0
- v7.6.0
- v7.5.0
- v7.4.3
- v7.4.2
- v7.4.1
- v7.4.0
- v7.3.0
- v7.2.10
- v7.2.9
- v7.2.7
- v7.2.6
- v7.2.4
- v7.2.3
- v7.2.2
- v7.2.1
- v7.2.0
- v7.1.3
- v7.1.2
- v7.1.1
- v7.1.0
- v7.0.8
- v7.0.7
- v7.0.6
- v7.0.5
- v7.0.4
- v7.0.3
- v7.0.2
- v7.0.0
- v6.1.13
- v6.1.12
- v6.1.11
- v6.1.10
- v6.1.9
- v6.1.8
- v6.1.7
- v6.1.6
- v6.1.5
- v6.1.4
- v6.1.3
- dev-dependabot/go_modules/tests/socks5-server/golang.org/x/net-0.17.0
- dev-hotfix/lost-require-middleware
- dev-feat/update-backup-uc
- dev-fix/zone
- dev-features/support-object-lifecycle
- dev-features/add-zone-and-fix-query-host
- dev-ignore-php-8.x-type-check
- dev-features/add-x-qiniu-date
- dev-features/support-deep-archive
- dev-features/support-higher-php
- dev-fix/count-string
- dev-features/use-qiniu-authorization
- dev-hotfix/header-key-name-valid
- dev-features/sign-qiniu-authorization
- dev-fix/header-key-naughty
- dev-patch/interrupt-when-get-region-error
- dev-develop
This package is auto-updated.
Last update: 2024-10-31 02:21:12 UTC
README
安装
推荐使用 composer
进行安装。可以使用 composer.json 声明依赖,或者运行下面的命令。SDK 包已经放到这里 qiniu/php-sdk
。
$ composer require qiniu/php-sdk
运行环境
使用方法
上传
use Qiniu\Storage\UploadManager; use Qiniu\Auth; ... $uploadMgr = new UploadManager(); $auth = new Auth($accessKey, $secretKey); $token = $auth->uploadToken($bucket); list($ret, $error) = $uploadMgr->putFile($token, 'key', 'filePath'); ...
测试
$ ./vendor/bin/phpunit tests/Qiniu/Tests/
常见问题
$error
保留了请求响应的信息,失败情况下ret
为none
, 将$error
可以打印出来,提交给我们。- API 的使用 demo 可以参考 examples。
代码贡献
详情参考代码提交指南。
贡献记录
联系我们
- 如果需要帮助,请提交工单(在portal右侧点击咨询和建议提交工单,或者直接向 support@qiniu.com 发送邮件)
- 如果有什么问题,可以到问答社区提问,问答社区
- 更详细的文档,见官方文档站
- 如果发现了 bug, 欢迎提交 issue
- 如果有功能需求,欢迎提交 issue
- 如果要提交代码,欢迎提交 pull request
- 欢迎关注我们的微信 微博,及时获取动态信息。
代码许可
The MIT License (MIT).详情见 License文件.