截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

upload.php 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. require dirname(__FILE__) . '/../vendor/autoload.php';
  3. $secretId = "COS_SECRETID"; //"云 API 密钥 SecretId";
  4. $secretKey = "COS_SECRETKEY"; //"云 API 密钥 SecretKey";
  5. $region = "ap-beijing"; //设置一个默认的存储桶地域
  6. $cosClient = new Qcloud\Cos\Client(
  7. array(
  8. 'region' => $region,
  9. 'schema' => 'https', //协议头部,默认为http
  10. 'credentials'=> array(
  11. 'secretId' => $secretId ,
  12. 'secretKey' => $secretKey)));
  13. $local_path = "/data/exampleobject";
  14. $printbar = function($totolSize, $uploadedSize) {
  15. printf("uploaded [%d/%d]\n", $uploadedSize, $totolSize);
  16. };
  17. try {
  18. $result = $cosClient->upload(
  19. $bucket = 'examplebucket-125000000', //格式:BucketName-APPID
  20. $key = 'exampleobject',
  21. $body = fopen($local_path, 'rb')
  22. /*
  23. $options = array(
  24. 'ACL' => 'string',
  25. 'CacheControl' => 'string',
  26. 'ContentDisposition' => 'string',
  27. 'ContentEncoding' => 'string',
  28. 'ContentLanguage' => 'string',
  29. 'ContentLength' => integer,
  30. 'ContentType' => 'string',
  31. 'Expires' => 'string',
  32. 'GrantFullControl' => 'string',
  33. 'GrantRead' => 'string',
  34. 'GrantWrite' => 'string',
  35. 'Metadata' => array(
  36. 'string' => 'string',
  37. ),
  38. 'ContentMD5' => 'string',
  39. 'ServerSideEncryption' => 'string',
  40. 'StorageClass' => 'string', //存储类型
  41. 'Progress' => $printbar, //指定进度条
  42. 'PartSize' => 10 * 1024 * 1024, //分块大小
  43. 'Concurrency' => 5 //并发数
  44. )
  45. */
  46. );
  47. // 请求成功
  48. print_r($result);
  49. } catch (\Exception $e) {
  50. // 请求失败
  51. echo($e);
  52. }